home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gcc_260.zip / gcc_260 / cp / init.c < prev    next >
C/C++ Source or Header  |  1994-06-23  |  126KB  |  4,078 lines

  1. /* Handle initialization things in C++.
  2.    Copyright (C) 1987, 1989, 1992, 1993, 1994 Free Software Foundation, Inc.
  3.    Contributed by Michael Tiemann (tiemann@cygnus.com)
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21.  
  22. /* High-level class interface. */
  23.  
  24. #include "config.h"
  25. #include "tree.h"
  26. #include "rtl.h"
  27. #include "cp-tree.h"
  28. #include "flags.h"
  29.  
  30. #undef NULL
  31. #define NULL 0
  32.  
  33. /* In C++, structures with well-defined constructors are initialized by
  34.    those constructors, unasked.  CURRENT_BASE_INIT_LIST
  35.    holds a list of stmts for a BASE_INIT term in the grammar.
  36.    This list has one element for each base class which must be
  37.    initialized.  The list elements are [basename, init], with
  38.    type basetype.  This allows the possibly anachronistic form
  39.    (assuming d : a, b, c) "d (int a) : c(a+5), b (a-4), a (a+3)"
  40.    where each successive term can be handed down the constructor
  41.    line.  Perhaps this was not intended.  */
  42. tree current_base_init_list, current_member_init_list;
  43.  
  44. void emit_base_init ();
  45. void check_base_init ();
  46. static void expand_aggr_vbase_init ();
  47. void expand_member_init ();
  48. void expand_aggr_init ();
  49.  
  50. static void expand_aggr_init_1 ();
  51. static void expand_recursive_init_1 ();
  52. static void expand_recursive_init ();
  53. static void expand_virtual_init PROTO((tree, tree));
  54. tree expand_vec_init ();
  55.  
  56. static void add_friend (), add_friends ();
  57.  
  58. /* Cache _builtin_new and _builtin_delete exprs.  */
  59. static tree BIN, BID, BIVN, BIVD;
  60.  
  61. /* Cache the identifier nodes for the two magic field of a new cookie.  */
  62. static tree nc_nelts_field_id;
  63. #if 0
  64. static tree nc_ptr_2comp_field_id;
  65. #endif
  66.  
  67. static tree minus_one;
  68.  
  69. /* Set up local variable for this file.  MUST BE CALLED AFTER
  70.    INIT_DECL_PROCESSING.  */
  71.  
  72. tree BI_header_type, BI_header_size;
  73.  
  74. void init_init_processing ()
  75. {
  76.   tree fields[1];
  77.  
  78.   /* Define implicit `operator new' and `operator delete' functions.  */
  79.   BIN = default_conversion (get_first_fn (IDENTIFIER_GLOBAL_VALUE (ansi_opname[(int) NEW_EXPR])));
  80.   TREE_USED (TREE_OPERAND (BIN, 0)) = 0;
  81.   BID = default_conversion (get_first_fn (IDENTIFIER_GLOBAL_VALUE (ansi_opname[(int) DELETE_EXPR])));
  82.   TREE_USED (TREE_OPERAND (BID, 0)) = 0;
  83.   BIVN = default_conversion (get_first_fn (IDENTIFIER_GLOBAL_VALUE (ansi_opname[(int) VEC_NEW_EXPR])));
  84.   TREE_USED (TREE_OPERAND (BIVN, 0)) = 0;
  85.   BIVD = default_conversion (get_first_fn (IDENTIFIER_GLOBAL_VALUE (ansi_opname[(int) VEC_DELETE_EXPR])));
  86.   TREE_USED (TREE_OPERAND (BIVD, 0)) = 0;
  87.   minus_one = build_int_2 (-1, -1);
  88.  
  89.   /* Define the structure that holds header information for
  90.      arrays allocated via operator new.  */
  91.   BI_header_type = make_lang_type (RECORD_TYPE);
  92.   nc_nelts_field_id = get_identifier ("nelts");
  93.   fields[0] = build_lang_field_decl (FIELD_DECL, nc_nelts_field_id, sizetype);
  94.   finish_builtin_type (BI_header_type, "__new_cookie", fields,
  95.                0, double_type_node);
  96.   BI_header_size = size_in_bytes (BI_header_type);
  97. }
  98.  
  99. /* Subroutine of emit_base_init.  For BINFO, initialize all the
  100.    virtual function table pointers, except those that come from
  101.    virtual base classes.  Initialize binfo's vtable pointer, if
  102.    INIT_SELF is true.  CAN_ELIDE is true when we know that all virtual
  103.    function table pointers in all bases have been initialized already,
  104.    probably because their constructors have just be run.  ADDR is the
  105.    pointer to the object whos vtables we are going to initialize.
  106.  
  107.    REAL_BINFO is usually the same as BINFO, except when addr is not of
  108.    pointer to the type of the real derived type that we want to
  109.    initialize for.  This is the case when addr is a pointer to a sub
  110.    object of a complete object, and we only want to do part of the
  111.    complete object's initiailzation of vtable pointers.  This is done
  112.    for all virtual table pointers in virtual base classes.  REAL_BINFO
  113.    is used to find the BINFO_VTABLE that we initialize with.  BINFO is
  114.    used for conversions of addr to subobjects.
  115.  
  116.    BINFO_TYPE (real_binfo) must be BINFO_TYPE (binfo).
  117.  
  118.    Relies upon binfo being inside TYPE_BINFO (TREE_TYPE (TREE_TYPE
  119.    (addr))).  */
  120. void
  121. expand_direct_vtbls_init (real_binfo, binfo, init_self, can_elide, addr)
  122.      tree real_binfo, binfo, addr;
  123.      int init_self, can_elide;
  124. {
  125.   tree real_binfos = BINFO_BASETYPES (real_binfo);
  126.   tree binfos = BINFO_BASETYPES (binfo);
  127.   int i, n_baselinks = real_binfos ? TREE_VEC_LENGTH (real_binfos) : 0;
  128.  
  129.   for (i = 0; i < n_baselinks; i++)
  130.     {
  131.       tree real_base_binfo = TREE_VEC_ELT (real_binfos, i);
  132.       tree base_binfo = TREE_VEC_ELT (binfos, i);
  133.       int is_not_base_vtable =
  134.     i != CLASSTYPE_VFIELD_PARENT (BINFO_TYPE (real_binfo));
  135.       if (! TREE_VIA_VIRTUAL (real_base_binfo))
  136.     expand_direct_vtbls_init (real_base_binfo, base_binfo,
  137.                   is_not_base_vtable, can_elide, addr);
  138.     }
  139. #if 0
  140.   /* Before turning this on, make sure it is correct.  */
  141.   if (can_elide  && ! BINFO_MODIFIED (binfo))
  142.     return;
  143. #endif
  144.   /* Should we use something besides CLASSTYPE_VFIELDS? */
  145.   if (init_self && CLASSTYPE_VFIELDS (BINFO_TYPE (real_binfo)))
  146.     {
  147.       tree base_ptr = convert_pointer_to_real (binfo, addr);
  148.       expand_virtual_init (real_binfo, base_ptr);
  149.     }
  150. }
  151.  
  152. /* 348 - 351 */
  153. /* Subroutine of emit_base_init.  */
  154. static void
  155. perform_member_init (member, name, init, explicit)
  156.      tree member, name, init;
  157.      int explicit;
  158. {
  159.   tree decl;
  160.   tree type = TREE_TYPE (member);
  161.  
  162.   if (TYPE_NEEDS_CONSTRUCTING (type)
  163.       || (init && TYPE_HAS_CONSTRUCTOR (type)))
  164.     {
  165.       /* Since `init' is already a TREE_LIST on the current_member_init_list,
  166.      only build it into one if we aren't already a list.  */
  167.       if (init != NULL_TREE && TREE_CODE (init) != TREE_LIST)
  168.     init = build_tree_list (NULL_TREE, init);
  169.  
  170.       decl = build_component_ref (C_C_D, name, 0, explicit);
  171.  
  172.       if (explicit
  173.       && TREE_CODE (type) == ARRAY_TYPE
  174.       && init != NULL_TREE
  175.       && TREE_CHAIN (init) == NULL_TREE
  176.       && TREE_CODE (TREE_TYPE (TREE_VALUE (init))) == ARRAY_TYPE)
  177.     {
  178.       /* Initialization of one array from another.  */
  179.       expand_vec_init (TREE_OPERAND (decl, 1), decl,
  180.                array_type_nelts (type), TREE_VALUE (init), 1);
  181.     }
  182.       else
  183.     expand_aggr_init (decl, init, 0);
  184.     }
  185.   else
  186.     {
  187.       if (init == NULL_TREE)
  188.     {
  189.       if (explicit)
  190.         {
  191.           cp_error ("incomplete initializer for member `%D' of class `%T' which has no constructor",
  192.             member, current_class_type);
  193.           init = error_mark_node;
  194.         }
  195.       /* member traversal: note it leaves init NULL */
  196.       else if (TREE_CODE (TREE_TYPE (member)) == REFERENCE_TYPE)
  197.         cp_pedwarn ("uninitialized reference member `%D'", member);
  198.     }
  199.       else if (TREE_CODE (init) == TREE_LIST)
  200.     {
  201.       /* There was an explicit member initialization.  Do some
  202.          work in that case.  */
  203.       if (TREE_CHAIN (init))
  204.         {
  205.           warning ("initializer list treated as compound expression");
  206.           init = build_compound_expr (init);
  207.         }
  208.       else
  209.         init = TREE_VALUE (init);
  210.     }
  211.  
  212.       /* We only build this with a null init if we got it from the
  213.      current_member_init_list.  */
  214.       if (init || explicit)
  215.     {
  216.       decl = build_component_ref (C_C_D, name, 0, explicit);
  217.       expand_expr_stmt (build_modify_expr (decl, INIT_EXPR, init));
  218.     }
  219.     }
  220.   if (flag_handle_exceptions && TYPE_NEEDS_DESTRUCTOR (type))
  221.     cp_warning ("caution, member `%D' may not be destroyed in the presense of an exception during construction", member);
  222. }
  223.  
  224. /* Subroutine of emit_member_init.  */
  225. static tree
  226. sort_member_init (t)
  227.      tree t;
  228. {
  229.   tree x, member, name, field, init;
  230.   tree init_list = NULL_TREE;
  231.   tree fields_to_unmark = NULL_TREE;
  232.   int found;
  233.  
  234.   for (member = TYPE_FIELDS (t); member ; member = TREE_CHAIN (member))
  235.     {
  236.       found = 0;
  237.       for (x = current_member_init_list ; x ; x = TREE_CHAIN (x))
  238.     {
  239.       /* If we cleared this out, then pay no attention to it.  */
  240.       if (TREE_PURPOSE (x) == NULL_TREE)
  241.         continue;
  242.       name = TREE_PURPOSE (x);
  243.  
  244. #if 0
  245.       field = (TREE_CODE (name) == COMPONENT_REF
  246.            ? TREE_OPERAND (name, 1) : IDENTIFIER_CLASS_VALUE (name));
  247. #else
  248.       /* Let's find out when this happens.  */
  249.       my_friendly_assert (TREE_CODE (name) != COMPONENT_REF, 348);
  250.       field = IDENTIFIER_CLASS_VALUE (name);
  251. #endif
  252.  
  253.       /* If one member shadows another, get the outermost one.  */
  254.       if (TREE_CODE (field) == TREE_LIST)
  255.         field = TREE_VALUE (field);
  256.  
  257.       if (field == member)
  258.         {
  259.           /* See if we already found an initializer for this field.  */
  260.           if (found)
  261.         {
  262.           if (DECL_NAME (field))
  263.             cp_error ("multiple initializations given for member `%D'",
  264.                   field);
  265.           continue;
  266.         }
  267.  
  268.           init_list = chainon (init_list,
  269.                    build_tree_list (name, TREE_VALUE (x)));
  270.           /* Make sure we won't try to work on this init again.  */
  271.           TREE_PURPOSE (x) = NULL_TREE;
  272.           found = 1;
  273.           break;
  274.         }
  275.     }
  276.  
  277.       /* If we didn't find MEMBER in the list, create a dummy entry
  278.      so the two lists (INIT_LIST and the list of members) will be
  279.      symmetrical.  */
  280.       if (! found)
  281.     init_list = chainon (init_list, build_tree_list (NULL_TREE, NULL_TREE));
  282.     }
  283.  
  284.   for (x = current_member_init_list ; x ; x = TREE_CHAIN (x))
  285.     {
  286.       if (TREE_PURPOSE (x))
  287.     {
  288.       name = TREE_PURPOSE (x);
  289.       init = TREE_VALUE (x);
  290.       /* XXX: this may need the COMPONENT_REF operand 0 check if
  291.          it turns out we actually get them.  */
  292.       field = IDENTIFIER_CLASS_VALUE (name);
  293.  
  294.       /* If one member shadows another, get the outermost one.  */
  295.       if (TREE_CODE (field) == TREE_LIST)
  296.         {
  297.           field = TREE_VALUE (field);
  298.           if (decl_type_context (field) != current_class_type)
  299.         cp_error ("field `%D' not in immediate context", field);
  300.         }
  301.  
  302. #if 0
  303.       /* It turns out if you have an anonymous union in the
  304.          class, a member from it can end up not being on the
  305.          list of fields (rather, the type is), and therefore
  306.          won't be seen by the for loop above.  */
  307.  
  308.       /* The code in this for loop is derived from a general loop
  309.          which had this check in it.  Theoretically, we've hit
  310.          every initialization for the list of members in T, so
  311.          we shouldn't have anything but these left in this list.  */
  312.       my_friendly_assert (DECL_FIELD_CONTEXT (field) != t, 351);
  313. #endif
  314.  
  315.       if (TREE_HAS_CONSTRUCTOR (field))
  316.         {
  317.           if (DECL_NAME (field))
  318.         error ("multiple initializations given for member `%s'",
  319.                IDENTIFIER_POINTER (DECL_NAME (field)));
  320.           continue;
  321.         }
  322.  
  323.       TREE_HAS_CONSTRUCTOR (field) = 1;
  324.       fields_to_unmark = tree_cons (NULL_TREE, field, fields_to_unmark);
  325.  
  326.       perform_member_init (field, name, init, 1);
  327.       TREE_PURPOSE (x) = NULL_TREE;
  328.     }
  329.     }
  330.  
  331.   /* Unmark fields which are initialized for the base class.  */
  332.   while (fields_to_unmark)
  333.     {
  334.       TREE_HAS_CONSTRUCTOR (TREE_VALUE (fields_to_unmark)) = 0;
  335.       /* XXX is this a memory leak? */
  336.       fields_to_unmark = TREE_CHAIN (fields_to_unmark);
  337.     }
  338.  
  339.   return init_list;
  340. }
  341.  
  342. /* Perform whatever initializations have yet to be done on the base
  343.    class of the class variable.  These actions are in the global
  344.    variable CURRENT_BASE_INIT_LIST.  Such an action could be
  345.    NULL_TREE, meaning that the user has explicitly called the base
  346.    class constructor with no arguments.
  347.  
  348.    If there is a need for a call to a constructor, we must surround
  349.    that call with a pushlevel/poplevel pair, since we are technically
  350.    at the PARM level of scope.
  351.  
  352.    Argument IMMEDIATELY, if zero, forces a new sequence to be
  353.    generated to contain these new insns, so it can be emitted later.
  354.    This sequence is saved in the global variable BASE_INIT_INSNS.
  355.    Otherwise, the insns are emitted into the current sequence.
  356.  
  357.    Note that emit_base_init does *not* initialize virtual base
  358.    classes.  That is done specially, elsewhere.  */
  359.    
  360. void
  361. emit_base_init (t, immediately)
  362.      tree t;
  363.      int immediately;
  364. {
  365.   extern tree in_charge_identifier;
  366.  
  367.   tree member, vbases;
  368.   tree init_list;
  369.   int pass, start;
  370.   tree t_binfo = TYPE_BINFO (t);
  371.   tree binfos = BINFO_BASETYPES (t_binfo);
  372.   int i, n_baseclasses = binfos ? TREE_VEC_LENGTH (binfos) : 0;
  373.   int have_init_list = 0, from_init_list;
  374.  
  375.   if (! immediately)
  376.     {
  377.       do_pending_stack_adjust ();
  378.       start_sequence ();
  379.     }
  380.  
  381.   if (write_symbols == NO_DEBUG)
  382.     /* As a matter of principle, `start_sequence' should do this.  */
  383.     emit_note (0, -1);
  384.   else
  385.     /* Always emit a line number note so we can step into constructors.  */
  386.     emit_line_note_force (DECL_SOURCE_FILE (current_function_decl),
  387.               DECL_SOURCE_LINE (current_function_decl));
  388.  
  389.   start = ! TYPE_USES_VIRTUAL_BASECLASSES (t);
  390.   for (pass = start; pass < 2; pass++)
  391.     {
  392.       tree vbase_init_list = NULL_TREE;
  393.  
  394.       for (init_list = current_base_init_list; init_list;
  395.        init_list = TREE_CHAIN (init_list))
  396.     {
  397.       tree basename = TREE_PURPOSE (init_list);
  398.       tree binfo;
  399.       tree init = TREE_VALUE (init_list);
  400.  
  401.       if (basename == NULL_TREE)
  402.         {
  403.           /* Initializer for single base class.  Must not
  404.          use multiple inheritance or this is ambiguous.  */
  405.           switch (n_baseclasses)
  406.         {
  407.         case 0:
  408.           error ("type `%s' does not have a base class to initialize",
  409.              IDENTIFIER_POINTER (current_class_name));
  410.           return;
  411.         case 1:
  412.           break;
  413.         default:
  414.           error ("unnamed initializer ambiguous for type `%s' which uses multiple inheritance", IDENTIFIER_POINTER (current_class_name));
  415.           return;
  416.         }
  417.           binfo = TREE_VEC_ELT (binfos, 0);
  418.         }
  419.       else if (is_aggr_typedef (basename, 1))
  420.         {
  421.           binfo = binfo_or_else (IDENTIFIER_TYPE_VALUE (basename), t);
  422.           if (binfo == NULL_TREE)
  423.         continue;
  424.  
  425.           /* Virtual base classes are special cases.  Their initializers
  426.          are recorded with this constructor, and they are used when
  427.          this constructor is the top-level constructor called.  */
  428.           if (! TREE_VIA_VIRTUAL (binfo))
  429.         {
  430.           /* Otherwise, if it is not an immediate base class, complain.  */
  431.           for (i = n_baseclasses-1; i >= 0; i--)
  432.             if (BINFO_TYPE (binfo) == BINFO_TYPE (TREE_VEC_ELT (binfos, i)))
  433.               break;
  434.           if (i < 0)
  435.             {
  436.               error ("type `%s' is not an immediate base class of type `%s'",
  437.                  IDENTIFIER_POINTER (basename),
  438.                  IDENTIFIER_POINTER (current_class_name));
  439.               continue;
  440.             }
  441.         }
  442.         }
  443.       else
  444.         continue;
  445.  
  446.       /* The base initialization list goes up to the first
  447.          base class which can actually use it.  */
  448.  
  449.       if (pass == start)
  450.         {
  451.           char *msgp = (! TYPE_HAS_CONSTRUCTOR (BINFO_TYPE (binfo)))
  452.         ? "cannot pass initialization up to class `%s'" : 0;
  453.  
  454.           while (! TYPE_HAS_CONSTRUCTOR (BINFO_TYPE (binfo))
  455.              && BINFO_BASETYPES (binfo) != NULL_TREE
  456.              && TREE_VEC_LENGTH (BINFO_BASETYPES (binfo)) == 1)
  457.         {
  458.           /* ?? This should be fixed in RENO by forcing
  459.              default constructors to exist.  */
  460.           SET_BINFO_BASEINIT_MARKED (binfo);
  461.           binfo = BINFO_BASETYPE (binfo, 0);
  462.         }
  463.  
  464.           /* We used to give an error if this wasn't true, saying that
  465.          there's no constructor for the initialization of basename.
  466.          This turned out to be incorrect---it should use the
  467.          default constructor, since a user could try to initialize
  468.          the class in a derived class's base initializer list.  */
  469.           if (TYPE_HAS_CONSTRUCTOR (BINFO_TYPE (binfo)))
  470.         {
  471.           if (msgp)
  472.             {
  473.               if (pedantic)
  474.             error_with_aggr_type (binfo, msgp);
  475.               else
  476.             msgp = NULL;
  477.             }
  478.         }
  479.  
  480.           if (BINFO_BASEINIT_MARKED (binfo))
  481.         {
  482.           msgp = "class `%s' initializer already specified";
  483.           error (msgp, IDENTIFIER_POINTER (basename));
  484.         }
  485.  
  486.           if (msgp)
  487.         continue;
  488.  
  489.           SET_BINFO_BASEINIT_MARKED (binfo);
  490.           if (TREE_VIA_VIRTUAL (binfo))
  491.         {
  492.           vbase_init_list = tree_cons (init, BINFO_TYPE (binfo),
  493.                            vbase_init_list);
  494.           continue;
  495.         }
  496.           if (pass == 0)
  497.         continue;
  498.         }
  499.       else if (TREE_VIA_VIRTUAL (binfo))
  500.         continue;
  501.  
  502.       member = convert_pointer_to (binfo, current_class_decl);
  503.       expand_aggr_init_1 (t_binfo, 0,
  504.                   build_indirect_ref (member, NULL_PTR), init,
  505.                   BINFO_OFFSET_ZEROP (binfo), LOOKUP_COMPLAIN);
  506.     }
  507.  
  508.       if (pass == 0)
  509.     {
  510.       tree first_arg = TREE_CHAIN (DECL_ARGUMENTS (current_function_decl));
  511.       tree vbases;
  512.  
  513.       if (DECL_NAME (current_function_decl) == NULL_TREE
  514.           && TREE_CHAIN (first_arg) != NULL_TREE)
  515.         {
  516.           /* If there are virtual baseclasses without initialization
  517.          specified, and this is a default X(X&) constructor,
  518.          build the initialization list so that each virtual baseclass
  519.          of the new object is initialized from the virtual baseclass
  520.          of the incoming arg.  */
  521.           tree init_arg = build_unary_op (ADDR_EXPR, TREE_CHAIN (first_arg), 0);
  522.           for (vbases = CLASSTYPE_VBASECLASSES (t);
  523.            vbases; vbases = TREE_CHAIN (vbases))
  524.         {
  525.           if (BINFO_BASEINIT_MARKED (vbases) == 0)
  526.             {
  527.               member = convert_pointer_to (vbases, init_arg);
  528.               if (member == init_arg)
  529.             member = TREE_CHAIN (first_arg);
  530.               else
  531.             TREE_TYPE (member) = build_reference_type (BINFO_TYPE (vbases));
  532.               vbase_init_list = tree_cons (convert_from_reference (member),
  533.                            vbases, vbase_init_list);
  534.               SET_BINFO_BASEINIT_MARKED (vbases);
  535.             }
  536.         }
  537.         }
  538.       expand_start_cond (first_arg, 0);
  539.       expand_aggr_vbase_init (t_binfo, C_C_D, current_class_decl,
  540.                   vbase_init_list);
  541.       expand_end_cond ();
  542.     }
  543.     }
  544.   current_base_init_list = NULL_TREE;
  545.  
  546.   /* Now, perform default initialization of all base classes which
  547.      have not yet been initialized, and unmark baseclasses which
  548.      have been initialized.  */
  549.   for (i = 0; i < n_baseclasses; i++)
  550.     {
  551.       tree base = current_class_decl;
  552.       tree base_binfo = TREE_VEC_ELT (binfos, i);
  553.  
  554.       if (TYPE_NEEDS_CONSTRUCTING (BINFO_TYPE (base_binfo)))
  555.     {
  556.       if (! TREE_VIA_VIRTUAL (base_binfo)
  557.           && ! BINFO_BASEINIT_MARKED (base_binfo))
  558.         {
  559.           tree ref;
  560.  
  561.           if (BINFO_OFFSET_ZEROP (base_binfo))
  562.         base = build1 (NOP_EXPR,
  563.                    TYPE_POINTER_TO (BINFO_TYPE (base_binfo)),
  564.                    current_class_decl);
  565.           else
  566.         base = build (PLUS_EXPR,
  567.                   TYPE_POINTER_TO (BINFO_TYPE (base_binfo)),
  568.                   current_class_decl, BINFO_OFFSET (base_binfo));
  569.  
  570.           ref = build_indirect_ref (base, NULL_PTR);
  571.           expand_aggr_init_1 (t_binfo, 0, ref, NULL_TREE,
  572.                   BINFO_OFFSET_ZEROP (base_binfo),
  573.                   LOOKUP_COMPLAIN);
  574.         }
  575.     }
  576.       CLEAR_BINFO_BASEINIT_MARKED (base_binfo);
  577.  
  578.       if (! TYPE_USES_VIRTUAL_BASECLASSES (t))
  579.     {
  580.       while (! TYPE_HAS_CONSTRUCTOR (BINFO_TYPE (base_binfo))
  581.          && BINFO_BASETYPES (base_binfo) != NULL_TREE
  582.          && TREE_VEC_LENGTH (BINFO_BASETYPES (base_binfo)) == 1)
  583.         {
  584.           /* ?? This should be fixed in RENO by forcing
  585.          default constructors to exist.  It is needed for symmetry
  586.          with code above.  */
  587.           base_binfo = BINFO_BASETYPE (base_binfo, 0);
  588.           CLEAR_BINFO_BASEINIT_MARKED (base_binfo);
  589.         }
  590.     }
  591.     }
  592.  
  593.   /* Initialize all the virtual function table fields that
  594.      do come from virtual base classes. */
  595.   if (TYPE_USES_VIRTUAL_BASECLASSES (t))
  596.     expand_indirect_vtbls_init (t_binfo, C_C_D, current_class_decl, 0);
  597.   for (vbases = CLASSTYPE_VBASECLASSES (t); vbases; vbases = TREE_CHAIN (vbases))
  598.     CLEAR_BINFO_BASEINIT_MARKED (vbases);
  599.  
  600.   /* Initialize all the virtual function table fields that
  601.      do not come from virtual base classes.  */
  602.   expand_direct_vtbls_init (t_binfo, t_binfo, 1, 1, current_class_decl);
  603.  
  604.   if (current_member_init_list)
  605.     {
  606.       init_list = sort_member_init (t);
  607.       have_init_list = 1;
  608.     }
  609.  
  610.   for (member = TYPE_FIELDS (t); member; member = TREE_CHAIN (member))
  611.     {
  612.       tree init, name;
  613.       from_init_list = 0;
  614.  
  615.       /* See if we had a user-specified member initialization.  */
  616.       if (have_init_list)
  617.     {
  618.       if (TREE_PURPOSE (init_list))
  619.         {
  620.           name = TREE_PURPOSE (init_list);
  621.           init = TREE_VALUE (init_list);
  622.           from_init_list = 1;
  623.  
  624.           if (TREE_STATIC (member))
  625.         {
  626.           error_with_aggr_type (DECL_FIELD_CONTEXT (member),
  627.                     "field `%s::%s' is static; only point of initialization is its declaration",
  628.                     IDENTIFIER_POINTER (TREE_PURPOSE (init_list)));
  629.           continue;
  630.         }
  631.  
  632.           /* Also see if it's ever a COMPONENT_REF here.  If it is, we
  633.          need to do `expand_assignment (name, init, 0, 0);' and
  634.          a continue.  */
  635.           my_friendly_assert (TREE_CODE (name) != COMPONENT_REF, 349);
  636.         }
  637.  
  638.       init_list = TREE_CHAIN (init_list);
  639.     }
  640.  
  641.       if (! from_init_list)
  642.     {
  643.       /* member could be, for example, a CONST_DECL for an enumerated
  644.          tag; we don't want to try to initialize that, since it already
  645.          has a value.  */
  646.       if (TREE_CODE (member) != FIELD_DECL || !DECL_NAME (member))
  647.         continue;
  648.  
  649.       name = DECL_NAME (member);
  650.       init = DECL_INITIAL (member);
  651.     }
  652.  
  653.       perform_member_init (member, name, init, from_init_list);
  654.     }
  655.  
  656.   current_member_init_list = NULL_TREE;
  657.  
  658.   /* It is possible for the initializers to need cleanups.
  659.      Expand those cleanups now that all the initialization
  660.      has been done.  */
  661.   expand_cleanups_to (NULL_TREE);
  662.  
  663.   if (! immediately)
  664.     {
  665.       extern rtx base_init_insns;
  666.  
  667.       do_pending_stack_adjust ();
  668.       my_friendly_assert (base_init_insns == 0, 207);
  669.       base_init_insns = get_insns ();
  670.       end_sequence ();
  671.     }
  672.  
  673.   /* All the implicit try blocks we built up will be zapped
  674.      when we come to a real binding contour boundary.  */
  675. }
  676.  
  677. /* Check that all fields are properly initialized after
  678.    an assignment to `this'.  */
  679. void
  680. check_base_init (t)
  681.      tree t;
  682. {
  683.   tree member;
  684.   for (member = TYPE_FIELDS (t); member; member = TREE_CHAIN (member))
  685.     if (DECL_NAME (member) && TREE_USED (member))
  686.       cp_error ("field `%D' used before initialized (after assignment to `this')",
  687.         member);
  688. }
  689.  
  690. /* This code sets up the virtual function tables appropriate for
  691.    the pointer DECL.  It is a one-ply initialization.
  692.  
  693.    BINFO is the exact type that DECL is supposed to be.  In
  694.    multiple inheritance, this might mean "C's A" if C : A, B.  */
  695. static void
  696. expand_virtual_init (binfo, decl)
  697.      tree binfo, decl;
  698. {
  699.   tree type = BINFO_TYPE (binfo);
  700.   tree vtbl, vtbl_ptr;
  701.   tree vtype, vtype_binfo;
  702.  
  703.   /* This code is crusty.  Should be simple, like:
  704.      vtbl = BINFO_VTABLE (binfo);
  705.      */
  706.   vtype = DECL_CONTEXT (CLASSTYPE_VFIELD (type));
  707.   vtype_binfo = get_binfo (vtype, TREE_TYPE (TREE_TYPE (decl)), 0);
  708.   vtbl = BINFO_VTABLE (binfo_value (DECL_FIELD_CONTEXT (CLASSTYPE_VFIELD (type)), binfo));
  709.   if (!flag_vtable_thunks)
  710.     assemble_external (vtbl);
  711.   TREE_USED (vtbl) = 1;
  712.   vtbl = build1 (ADDR_EXPR, TYPE_POINTER_TO (TREE_TYPE (vtbl)), vtbl);
  713.   decl = convert_pointer_to_real (vtype_binfo, decl);
  714.   vtbl_ptr = build_vfield_ref (build_indirect_ref (decl, NULL_PTR), vtype);
  715.   if (vtbl_ptr == error_mark_node)
  716.     return;
  717.  
  718.   /* Have to convert VTBL since array sizes may be different.  */
  719.   vtbl = convert_force (TREE_TYPE (vtbl_ptr), vtbl);
  720.   expand_expr_stmt (build_modify_expr (vtbl_ptr, NOP_EXPR, vtbl));
  721. }
  722.  
  723. /* Subroutine of `expand_aggr_vbase_init'.
  724.    BINFO is the binfo of the type that is being initialized.
  725.    INIT_LIST is the list of initializers for the virtual baseclass.  */
  726. static void
  727. expand_aggr_vbase_init_1 (binfo, exp, addr, init_list)
  728.      tree binfo, exp, addr, init_list;
  729. {
  730.   tree init = value_member (BINFO_TYPE (binfo), init_list);
  731.   tree ref = build_indirect_ref (addr, NULL_PTR);
  732.   if (init)
  733.     init = TREE_PURPOSE (init);
  734.   /* Call constructors, but don't set up vtables.  */
  735.   expand_aggr_init_1 (binfo, exp, ref, init, 0,
  736.               LOOKUP_COMPLAIN|LOOKUP_SPECULATIVELY);
  737.   CLEAR_BINFO_VBASE_INIT_MARKED (binfo);
  738. }
  739.  
  740. /* Initialize this object's virtual base class pointers.  This must be
  741.    done only at the top-level of the object being constructed.
  742.  
  743.    INIT_LIST is list of initialization for constructor to perform.  */
  744. static void
  745. expand_aggr_vbase_init (binfo, exp, addr, init_list)
  746.      tree binfo;
  747.      tree exp;
  748.      tree addr;
  749.      tree init_list;
  750. {
  751.   tree type = BINFO_TYPE (binfo);
  752.  
  753.   if (TYPE_USES_VIRTUAL_BASECLASSES (type))
  754.     {
  755.       tree result = init_vbase_pointers (type, addr);
  756.       tree vbases;
  757.  
  758.       if (result)
  759.     expand_expr_stmt (build_compound_expr (result));
  760.  
  761.       /* Mark everything as having an initializer
  762.      (either explicit or default).  */
  763.       for (vbases = CLASSTYPE_VBASECLASSES (type);
  764.        vbases; vbases = TREE_CHAIN (vbases))
  765.     SET_BINFO_VBASE_INIT_MARKED (vbases);
  766.  
  767.       /* First, initialize baseclasses which could be baseclasses
  768.      for other virtual baseclasses.  */
  769.       for (vbases = CLASSTYPE_VBASECLASSES (type);
  770.        vbases; vbases = TREE_CHAIN (vbases))
  771.     /* Don't initialize twice.  */
  772.     if (BINFO_VBASE_INIT_MARKED (vbases))
  773.       {
  774.         tree tmp = result;
  775.  
  776.         while (BINFO_TYPE (vbases) != BINFO_TYPE (TREE_PURPOSE (tmp)))
  777.           tmp = TREE_CHAIN (tmp);
  778.         expand_aggr_vbase_init_1 (vbases, exp,
  779.                       TREE_OPERAND (TREE_VALUE (tmp), 0),
  780.                       init_list);
  781.       }
  782.  
  783.       /* Now initialize the baseclasses which don't have virtual baseclasses.  */
  784.       for (; result; result = TREE_CHAIN (result))
  785.     /* Don't initialize twice.  */
  786.     if (BINFO_VBASE_INIT_MARKED (TREE_PURPOSE (result)))
  787.       {
  788.         my_friendly_abort (47);
  789.         expand_aggr_vbase_init_1 (TREE_PURPOSE (result), exp,
  790.                       TREE_OPERAND (TREE_VALUE (result), 0),
  791.                       init_list);
  792.       }
  793.     }
  794. }
  795.  
  796. /* Subroutine to perform parser actions for member initialization.
  797.    S_ID is the scoped identifier.
  798.    NAME is the name of the member.
  799.    INIT is the initializer, or `void_type_node' if none.  */
  800. void
  801. do_member_init (s_id, name, init)
  802.      tree s_id, name, init;
  803. {
  804.   tree binfo, base;
  805.  
  806.   if (current_class_type == NULL_TREE
  807.       || ! is_aggr_typedef (s_id, 1))
  808.     return;
  809.   binfo = get_binfo (IDENTIFIER_TYPE_VALUE (s_id),
  810.               current_class_type, 1);
  811.   if (binfo == error_mark_node)
  812.     return;
  813.   if (binfo == 0)
  814.     {
  815.       error_not_base_type (IDENTIFIER_TYPE_VALUE (s_id), current_class_type);
  816.       return;
  817.     }
  818.  
  819.   base = convert_pointer_to (binfo, current_class_decl);
  820.   expand_member_init (build_indirect_ref (base, NULL_PTR), name, init);
  821. }
  822.  
  823. /* Function to give error message if member initialization specification
  824.    is erroneous.  FIELD is the member we decided to initialize.
  825.    TYPE is the type for which the initialization is being performed.
  826.    FIELD must be a member of TYPE, or the base type from which FIELD
  827.    comes must not need a constructor.
  828.    
  829.    MEMBER_NAME is the name of the member.  */
  830.  
  831. static int
  832. member_init_ok_or_else (field, type, member_name)
  833.      tree field;
  834.      tree type;
  835.      char *member_name;
  836. {
  837.   if (field == error_mark_node)
  838.     return 0;
  839.   if (field == NULL_TREE)
  840.     {
  841.       cp_error ("class `%T' does not have any field named `%s'", type,
  842.           member_name);
  843.       return 0;
  844.     }
  845.   if (DECL_CONTEXT (field) != type
  846.       && TYPE_NEEDS_CONSTRUCTING (DECL_CONTEXT (field)))
  847.     {
  848.       cp_error ("member `%D' comes from base class needing constructor",
  849.         field);
  850.       return 0;
  851.     }
  852.   return 1;
  853. }
  854.  
  855. /* If NAME is a viable field name for the aggregate DECL,
  856.    and PARMS is a viable parameter list, then expand an _EXPR
  857.    which describes this initialization.
  858.  
  859.    Note that we do not need to chase through the class's base classes
  860.    to look for NAME, because if it's in that list, it will be handled
  861.    by the constructor for that base class.
  862.  
  863.    We do not yet have a fixed-point finder to instantiate types
  864.    being fed to overloaded constructors.  If there is a unique
  865.    constructor, then argument types can be got from that one.
  866.  
  867.    If INIT is non-NULL, then it the initialization should
  868.    be placed in `current_base_init_list', where it will be processed
  869.    by `emit_base_init'.  */
  870. void
  871. expand_member_init (exp, name, init)
  872.      tree exp, name, init;
  873. {
  874.   extern tree ptr_type_node;    /* should be in tree.h */
  875.  
  876.   tree basetype = NULL_TREE, field;
  877.   tree parm;
  878.   tree rval, type;
  879.   tree actual_name;
  880.  
  881.   if (exp == NULL_TREE)
  882.     return;            /* complain about this later */
  883.  
  884.   type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
  885.  
  886.   if (name == NULL_TREE && IS_AGGR_TYPE (type))
  887.     switch (CLASSTYPE_N_BASECLASSES (type))
  888.       {
  889.       case 0:
  890.     error ("base class initializer specified, but no base class to initialize");
  891.     return;
  892.       case 1:
  893.     basetype = TYPE_BINFO_BASETYPE (type, 0);
  894.     break;
  895.       default:
  896.     error ("initializer for unnamed base class ambiguous");
  897.     cp_error ("(type `%T' uses multiple inheritance)", type);
  898.     return;
  899.       }
  900.  
  901.   if (init)
  902.     {
  903.       /* The grammar should not allow fields which have names
  904.      that are TYPENAMEs.  Therefore, if the field has
  905.      a non-NULL TREE_TYPE, we may assume that this is an
  906.      attempt to initialize a base class member of the current
  907.      type.  Otherwise, it is an attempt to initialize a
  908.      member field.  */
  909.  
  910.       if (init == void_type_node)
  911.     init = NULL_TREE;
  912.  
  913.       if (name == NULL_TREE || IDENTIFIER_HAS_TYPE_VALUE (name))
  914.     {
  915.       tree base_init;
  916.  
  917.       if (name == NULL_TREE)
  918.         {
  919. /*
  920.           if (basetype)
  921.         name = TYPE_IDENTIFIER (basetype);
  922.           else
  923.         {
  924.           error ("no base class to initialize");
  925.           return;
  926.         }
  927. */
  928.         }
  929.       else
  930.         {
  931.           basetype = IDENTIFIER_TYPE_VALUE (name);
  932.           if (basetype != type
  933.           && ! binfo_member (basetype, TYPE_BINFO (type))
  934.           && ! binfo_member (basetype, CLASSTYPE_VBASECLASSES (type)))
  935.         {
  936.           if (IDENTIFIER_CLASS_VALUE (name))
  937.             goto try_member;
  938.           if (TYPE_USES_VIRTUAL_BASECLASSES (type))
  939.             error ("type `%s' is not an immediate or virtual basetype for `%s'",
  940.                IDENTIFIER_POINTER (name),
  941.                TYPE_NAME_STRING (type));
  942.           else
  943.             error ("type `%s' is not an immediate basetype for `%s'",
  944.                IDENTIFIER_POINTER (name),
  945.                TYPE_NAME_STRING (type));
  946.           return;
  947.         }
  948.         }
  949.  
  950.       if (purpose_member (name, current_base_init_list))
  951.         {
  952.           error ("base class `%s' already initialized",
  953.              IDENTIFIER_POINTER (name));
  954.           return;
  955.         }
  956.  
  957.       base_init = build_tree_list (name, init);
  958.       TREE_TYPE (base_init) = basetype;
  959.       current_base_init_list = chainon (current_base_init_list, base_init);
  960.     }
  961.       else
  962.     {
  963.       tree member_init;
  964.  
  965.     try_member:
  966.       field = lookup_field (type, name, 1, 0);
  967.  
  968.       if (! member_init_ok_or_else (field, type, IDENTIFIER_POINTER (name)))
  969.         return;
  970.  
  971.       if (purpose_member (name, current_member_init_list))
  972.         {
  973.           error ("field `%s' already initialized", IDENTIFIER_POINTER (name));
  974.           return;
  975.         }
  976.  
  977.       member_init = build_tree_list (name, init);
  978.       TREE_TYPE (member_init) = TREE_TYPE (field);
  979.       current_member_init_list = chainon (current_member_init_list, member_init);
  980.     }
  981.       return;
  982.     }
  983.   else if (name == NULL_TREE)
  984.     {
  985.       compiler_error ("expand_member_init: name == NULL_TREE");
  986.       return;
  987.     }
  988.  
  989.   basetype = type;
  990.   field = lookup_field (basetype, name, 0, 0);
  991.  
  992.   if (! member_init_ok_or_else (field, basetype, IDENTIFIER_POINTER (name)))
  993.     return;
  994.  
  995.   /* now see if there is a constructor for this type
  996.      which will take these args. */
  997.  
  998.   if (TYPE_HAS_CONSTRUCTOR (TREE_TYPE (field)))
  999.     {
  1000.       tree parmtypes, fndecl;
  1001.  
  1002.       if (TREE_CODE (exp) == VAR_DECL || TREE_CODE (exp) == PARM_DECL)
  1003.     {
  1004.       /* just know that we've seen something for this node */
  1005.       DECL_INITIAL (exp) = error_mark_node;
  1006.       TREE_USED (exp) = 1;
  1007.     }
  1008.       type = TYPE_MAIN_VARIANT (TREE_TYPE (field));
  1009.       actual_name = TYPE_IDENTIFIER (type);
  1010.       parm = build_component_ref (exp, name, 0, 0);
  1011.  
  1012.       /* Now get to the constructor.  */
  1013.       fndecl = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (type), 0);
  1014.       /* Get past destructor, if any.  */
  1015.       if (TYPE_HAS_DESTRUCTOR (type))
  1016.     fndecl = DECL_CHAIN (fndecl);
  1017.  
  1018.       if (fndecl)
  1019.     my_friendly_assert (TREE_CODE (fndecl) == FUNCTION_DECL, 209);
  1020.  
  1021.       /* If the field is unique, we can use the parameter
  1022.      types to guide possible type instantiation.  */
  1023.       if (DECL_CHAIN (fndecl) == NULL_TREE)
  1024.     {
  1025.       /* There was a confusion here between
  1026.          FIELD and FNDECL.  The following code
  1027.          should be correct, but abort is here
  1028.          to make sure.  */
  1029.       my_friendly_abort (48);
  1030.       parmtypes = FUNCTION_ARG_CHAIN (fndecl);
  1031.     }
  1032.       else
  1033.     {
  1034.       parmtypes = NULL_TREE;
  1035.       fndecl = NULL_TREE;
  1036.     }
  1037.  
  1038.       init = convert_arguments (parm, parmtypes, NULL_TREE, fndecl, LOOKUP_NORMAL);
  1039.       if (init == NULL_TREE || TREE_TYPE (init) != error_mark_node)
  1040.     rval = build_method_call (NULL_TREE, actual_name, init, NULL_TREE, LOOKUP_NORMAL);
  1041.       else
  1042.     return;
  1043.  
  1044.       if (rval != error_mark_node)
  1045.     {
  1046.       /* Now, fill in the first parm with our guy */
  1047.       TREE_VALUE (TREE_OPERAND (rval, 1))
  1048.         = build_unary_op (ADDR_EXPR, parm, 0);
  1049.       TREE_TYPE (rval) = ptr_type_node;
  1050.       TREE_SIDE_EFFECTS (rval) = 1;
  1051.     }
  1052.     }
  1053.   else if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (field)))
  1054.     {
  1055.       parm = build_component_ref (exp, name, 0, 0);
  1056.       expand_aggr_init (parm, NULL_TREE, 0);
  1057.       rval = error_mark_node;
  1058.     }
  1059.  
  1060.   /* Now initialize the member.  It does not have to
  1061.      be of aggregate type to receive initialization.  */
  1062.   if (rval != error_mark_node)
  1063.     expand_expr_stmt (rval);
  1064. }
  1065.  
  1066. /* This is like `expand_member_init', only it stores one aggregate
  1067.    value into another.
  1068.  
  1069.    INIT comes in two flavors: it is either a value which
  1070.    is to be stored in EXP, or it is a parameter list
  1071.    to go to a constructor, which will operate on EXP.
  1072.    If `init' is a CONSTRUCTOR, then we emit a warning message,
  1073.    explaining that such initializations are illegal.
  1074.  
  1075.    ALIAS_THIS is nonzero iff we are initializing something which is
  1076.    essentially an alias for C_C_D.  In this case, the base constructor
  1077.    may move it on us, and we must keep track of such deviations.
  1078.  
  1079.    If INIT resolves to a CALL_EXPR which happens to return
  1080.    something of the type we are looking for, then we know
  1081.    that we can safely use that call to perform the
  1082.    initialization.
  1083.  
  1084.    The virtual function table pointer cannot be set up here, because
  1085.    we do not really know its type.
  1086.  
  1087.    Virtual baseclass pointers are also set up here.
  1088.  
  1089.    This never calls operator=().
  1090.  
  1091.    When initializing, nothing is CONST.
  1092.  
  1093.    A default copy constructor may have to be used to perform the
  1094.    initialization.
  1095.  
  1096.    A constructor or a conversion operator may have to be used to
  1097.    perform the initialization, but not both, as it would be ambiguous.
  1098.    */
  1099.  
  1100. void
  1101. expand_aggr_init (exp, init, alias_this)
  1102.      tree exp, init;
  1103.      int alias_this;
  1104. {
  1105.   tree type = TREE_TYPE (exp);
  1106.   int was_const = TREE_READONLY (exp);
  1107.  
  1108.   if (init == error_mark_node)
  1109.     return;
  1110.  
  1111.   TREE_READONLY (exp) = 0;
  1112.  
  1113.   if (TREE_CODE (type) == ARRAY_TYPE)
  1114.     {
  1115.       /* Must arrange to initialize each element of EXP
  1116.      from elements of INIT.  */
  1117.       int was_const_elts = TYPE_READONLY (TREE_TYPE (type));
  1118.       tree itype = init ? TREE_TYPE (init) : NULL_TREE;
  1119.       if (was_const_elts)
  1120.     TREE_TYPE (exp) = TYPE_MAIN_VARIANT (type);
  1121.       if (init && TREE_TYPE (init) == NULL_TREE)
  1122.     {
  1123.       /* Handle bad initializers like:
  1124.          class COMPLEX {
  1125.          public:
  1126.            double re, im;
  1127.            COMPLEX(double r = 0.0, double i = 0.0) {re = r; im = i;};
  1128.            ~COMPLEX() {};
  1129.          };
  1130.  
  1131.          int main(int argc, char **argv) {
  1132.            COMPLEX zees(1.0, 0.0)[10];
  1133.          }
  1134.       */
  1135.       error ("bad array initializer");
  1136.       return;
  1137.     }
  1138.       expand_vec_init (exp, exp, array_type_nelts (type), init,
  1139.                init && comptypes (TREE_TYPE (init), TREE_TYPE (exp), 1));
  1140.       TREE_READONLY (exp) = was_const;
  1141.       TREE_TYPE (exp) = type;
  1142.       if (init) TREE_TYPE (init) = itype;
  1143.       return;
  1144.     }
  1145.  
  1146.   if (TREE_CODE (exp) == VAR_DECL || TREE_CODE (exp) == PARM_DECL)
  1147.     /* just know that we've seen something for this node */
  1148.     TREE_USED (exp) = 1;
  1149.  
  1150. #if 0
  1151.   /* If initializing from a GNU C CONSTRUCTOR, consider the elts in the
  1152.      constructor as parameters to an implicit GNU C++ constructor.  */
  1153.   if (init && TREE_CODE (init) == CONSTRUCTOR
  1154.       && TYPE_HAS_CONSTRUCTOR (type)
  1155.       && TREE_TYPE (init) == type)
  1156.     init = CONSTRUCTOR_ELTS (init);
  1157. #endif
  1158.   expand_aggr_init_1 (TYPE_BINFO (type), exp, exp,
  1159.               init, alias_this, LOOKUP_NORMAL);
  1160.   TREE_READONLY (exp) = was_const;
  1161. }
  1162.  
  1163. static void
  1164. expand_default_init (binfo, true_exp, exp, type, init, alias_this, flags)
  1165.      tree binfo;
  1166.      tree true_exp, exp;
  1167.      tree type;
  1168.      tree init;
  1169.      int alias_this;
  1170.      int flags;
  1171. {
  1172.   /* It fails because there may not be a constructor which takes
  1173.      its own type as the first (or only parameter), but which does
  1174.      take other types via a conversion.  So, if the thing initializing
  1175.      the expression is a unit element of type X, first try X(X&),
  1176.      followed by initialization by X.  If neither of these work
  1177.      out, then look hard.  */
  1178.   tree rval;
  1179.   tree parms;
  1180.   int xxref_init_possible;
  1181.  
  1182.   if (init == NULL_TREE || TREE_CODE (init) == TREE_LIST)
  1183.     {
  1184.       parms = init;
  1185.       if (parms) init = TREE_VALUE (parms);
  1186.     }
  1187.   else if (TREE_CODE (init) == INDIRECT_REF && TREE_HAS_CONSTRUCTOR (init))
  1188.     {
  1189.       rval = convert_for_initialization (exp, type, init, 0, 0, 0, 0);
  1190.       expand_expr_stmt (rval);
  1191.       return;
  1192.     }
  1193.   else
  1194.     parms = build_tree_list (NULL_TREE, init);
  1195.  
  1196.   if (TYPE_HAS_INIT_REF (type)
  1197.       || init == NULL_TREE
  1198.       || TREE_CHAIN (parms) != NULL_TREE)
  1199.     xxref_init_possible = 0;
  1200.   else
  1201.     {
  1202.       xxref_init_possible = LOOKUP_SPECULATIVELY;
  1203.       flags &= ~LOOKUP_COMPLAIN;
  1204.     }
  1205.  
  1206.   if (TYPE_USES_VIRTUAL_BASECLASSES (type))
  1207.     {
  1208.       if (true_exp == exp)
  1209.     parms = tree_cons (NULL_TREE, integer_one_node, parms);
  1210.       else
  1211.     parms = tree_cons (NULL_TREE, integer_zero_node, parms);
  1212.       flags |= LOOKUP_HAS_IN_CHARGE;
  1213.     }
  1214.  
  1215.   rval = build_method_call (exp, constructor_name_full (type),
  1216.                 parms, binfo, flags|xxref_init_possible);
  1217.   if (rval == NULL_TREE && xxref_init_possible)
  1218.     {
  1219.       /* It is an error to implement a default copy constructor if
  1220.      (see ARM 12.8 for details) ... one case being if another
  1221.      copy constructor already exists. */
  1222.       tree init_type = TREE_TYPE (init);
  1223.       if (TREE_CODE (init_type) == REFERENCE_TYPE)
  1224.     init_type = TREE_TYPE (init_type);
  1225.       if (TYPE_MAIN_VARIANT (init_type) == TYPE_MAIN_VARIANT (type)
  1226.       || (IS_AGGR_TYPE (init_type)
  1227.           && UNIQUELY_DERIVED_FROM_P (type, init_type)))
  1228.     {
  1229.       if (type == BINFO_TYPE (binfo)
  1230.           && TYPE_USES_VIRTUAL_BASECLASSES (type))
  1231.         {
  1232.           tree addr = build_unary_op (ADDR_EXPR, exp, 0);
  1233.           expand_aggr_vbase_init (binfo, exp, addr, NULL_TREE);
  1234.  
  1235.           expand_indirect_vtbls_init (binfo, exp, addr, 1);
  1236.         }
  1237.       expand_expr_stmt (build_modify_expr (exp, INIT_EXPR, init));
  1238.       return;
  1239.     }
  1240.       else
  1241.     rval = build_method_call (exp, constructor_name_full (type), parms,
  1242.                   binfo, flags);
  1243.     }
  1244.  
  1245.   /* Private, protected, or otherwise unavailable.  */
  1246.   if (rval == error_mark_node && (flags&LOOKUP_COMPLAIN))
  1247.     cp_error ("in base initialization for class `%T'", binfo);
  1248.   /* A valid initialization using constructor.  */
  1249.   else if (rval != error_mark_node && rval != NULL_TREE)
  1250.     {
  1251.       /* p. 222: if the base class assigns to `this', then that
  1252.      value is used in the derived class.  */
  1253.       if ((flag_this_is_variable & 1) && alias_this)
  1254.     {
  1255.       TREE_TYPE (rval) = TREE_TYPE (current_class_decl);
  1256.       expand_assignment (current_class_decl, rval, 0, 0);
  1257.     }
  1258.       else
  1259.     expand_expr_stmt (rval);
  1260.     }
  1261.   else if (parms && TREE_CHAIN (parms) == NULL_TREE)
  1262.     {
  1263.       /* If we are initializing one aggregate value
  1264.      from another, and though there are constructors,
  1265.      and none accept the initializer, just do a bitwise
  1266.      copy.
  1267.  
  1268.      The above sounds wrong, ``If a class has any copy
  1269.      constructor defined, the default copy constructor will
  1270.      not be generated.'' 12.8 Copying Class Objects  (mrs)
  1271.  
  1272.      @@ This should reject initializer which a constructor
  1273.      @@ rejected on access gounds, but there is
  1274.      @@ no way right now to recognize that case with
  1275.      @@ just `error_mark_node'.  */
  1276.       tree itype;
  1277.       init = TREE_VALUE (parms);
  1278.       itype = TREE_TYPE (init);
  1279.       if (TREE_CODE (itype) == REFERENCE_TYPE)
  1280.     {
  1281.       init = convert_from_reference (init);
  1282.       itype = TREE_TYPE (init);
  1283.     }
  1284.       itype = TYPE_MAIN_VARIANT (itype);
  1285.  
  1286.       /* This is currently how the default X(X&) constructor
  1287.      is implemented.  */
  1288.       if (comptypes (TYPE_MAIN_VARIANT (type), itype, 0))
  1289.     {
  1290. #if 0
  1291.       warning ("bitwise copy in initialization of type `%s'",
  1292.            TYPE_NAME_STRING (type));
  1293. #endif
  1294.       rval = build (INIT_EXPR, type, exp, init);
  1295.       expand_expr_stmt (rval);
  1296.     }
  1297.       else
  1298.     {
  1299.       cp_error ("in base initialization for class `%T',", binfo);
  1300.       cp_error ("invalid initializer to constructor for type `%T'", type);
  1301.       return;
  1302.     }
  1303.     }
  1304.   else
  1305.     {
  1306.       if (init == NULL_TREE)
  1307.     my_friendly_assert (parms == NULL_TREE, 210);
  1308.       if (parms == NULL_TREE && TREE_VIA_VIRTUAL (binfo))
  1309.     cp_error ("virtual baseclass `%T' does not have default initializer", binfo);
  1310.       else
  1311.     {
  1312.       cp_error ("in base initialization for class `%T',", binfo);
  1313.       /* This will make an error message for us.  */
  1314.       build_method_call (exp, constructor_name_full (type), parms, binfo,
  1315.                  (TYPE_USES_VIRTUAL_BASECLASSES (type)
  1316.                   ? LOOKUP_NORMAL|LOOKUP_HAS_IN_CHARGE
  1317.                   : LOOKUP_NORMAL));
  1318.     }
  1319.       return;
  1320.     }
  1321.   /* Constructor has been called, but vtables may be for TYPE
  1322.      rather than for FOR_TYPE.  */
  1323. }
  1324.  
  1325. /* This function is responsible for initializing EXP with INIT
  1326.    (if any).
  1327.  
  1328.    BINFO is the binfo of the type for who we are performing the
  1329.    initialization.  For example, if W is a virtual base class of A and B,
  1330.    and C : A, B.
  1331.    If we are initializing B, then W must contain B's W vtable, whereas
  1332.    were we initializing C, W must contain C's W vtable.
  1333.  
  1334.    TRUE_EXP is nonzero if it is the true expression being initialized.
  1335.    In this case, it may be EXP, or may just contain EXP.  The reason we
  1336.    need this is because if EXP is a base element of TRUE_EXP, we
  1337.    don't necessarily know by looking at EXP where its virtual
  1338.    baseclass fields should really be pointing.  But we do know
  1339.    from TRUE_EXP.  In constructors, we don't know anything about
  1340.    the value being initialized.
  1341.  
  1342.    ALIAS_THIS serves the same purpose it serves for expand_aggr_init.
  1343.  
  1344.    FLAGS is just passes to `build_method_call'.  See that function for
  1345.    its description.  */
  1346.  
  1347. static void
  1348. expand_aggr_init_1 (binfo, true_exp, exp, init, alias_this, flags)
  1349.      tree binfo;
  1350.      tree true_exp, exp;
  1351.      tree init;
  1352.      int alias_this;
  1353.      int flags;
  1354. {
  1355.   tree type = TREE_TYPE (exp);
  1356.   tree init_type = NULL_TREE;
  1357.  
  1358.   my_friendly_assert (init != error_mark_node && type != error_mark_node, 211);
  1359.  
  1360.   /* Use a function returning the desired type to initialize EXP for us.
  1361.      If the function is a constructor, and its first argument is
  1362.      NULL_TREE, know that it was meant for us--just slide exp on
  1363.      in and expand the constructor.  Constructors now come
  1364.      as TARGET_EXPRs.  */
  1365.   if (init)
  1366.     {
  1367.       tree init_list = NULL_TREE;
  1368.  
  1369.       if (TREE_CODE (init) == TREE_LIST)
  1370.     {
  1371.       init_list = init;
  1372.       if (TREE_CHAIN (init) == NULL_TREE)
  1373.         init = TREE_VALUE (init);
  1374.     }
  1375.  
  1376.       init_type = TREE_TYPE (init);
  1377.  
  1378.       if (TREE_CODE (init) != TREE_LIST)
  1379.     {
  1380.       if (TREE_CODE (init_type) == ERROR_MARK)
  1381.         return;
  1382.  
  1383. #if 0
  1384.       /* These lines are found troublesome 5/11/89.  */
  1385.       if (TREE_CODE (init_type) == REFERENCE_TYPE)
  1386.         init_type = TREE_TYPE (init_type);
  1387. #endif
  1388.  
  1389.       /* This happens when we use C++'s functional cast notation.
  1390.          If the types match, then just use the TARGET_EXPR
  1391.          directly.  Otherwise, we need to create the initializer
  1392.          separately from the object being initialized.  */
  1393.       if (TREE_CODE (init) == TARGET_EXPR)
  1394.         {
  1395.           if (init_type == type)
  1396.         {
  1397.           if (TREE_CODE (exp) == VAR_DECL
  1398.               || TREE_CODE (exp) == RESULT_DECL)
  1399.             /* Unify the initialization targets.  */
  1400.             DECL_RTL (TREE_OPERAND (init, 0)) = DECL_RTL (exp);
  1401.           else
  1402.             DECL_RTL (TREE_OPERAND (init, 0)) = expand_expr (exp, NULL_RTX, 0, 0);
  1403.  
  1404.           expand_expr_stmt (init);
  1405.           return;
  1406.         }
  1407.           else
  1408.         {
  1409.           init = TREE_OPERAND (init, 1);
  1410.           init = build (CALL_EXPR, init_type,
  1411.                 TREE_OPERAND (init, 0), TREE_OPERAND (init, 1), 0);
  1412.           TREE_SIDE_EFFECTS (init) = 1;
  1413. #if 0
  1414.           TREE_RAISES (init) = ??
  1415. #endif
  1416.             if (init_list)
  1417.               TREE_VALUE (init_list) = init;
  1418.         }
  1419.         }
  1420.  
  1421.       if (init_type == type && TREE_CODE (init) == CALL_EXPR
  1422. #if 0
  1423.           /* It is legal to directly initialize from a CALL_EXPR
  1424.          without going through X(X&), apparently.  */
  1425.           && ! TYPE_GETS_INIT_REF (type)
  1426. #endif
  1427.           )
  1428.         {
  1429.           /* A CALL_EXPR is a legitimate form of initialization, so
  1430.          we should not print this warning message.  */
  1431. #if 0
  1432.           /* Should have gone away due to 5/11/89 change.  */
  1433.           if (TREE_CODE (TREE_TYPE (init)) == REFERENCE_TYPE)
  1434.         init = convert_from_reference (init);
  1435. #endif
  1436.           expand_assignment (exp, init, 0, 0);
  1437.           if (exp == DECL_RESULT (current_function_decl))
  1438.         {
  1439.           /* Failing this assertion means that the return value
  1440.              from receives multiple initializations.  */
  1441.           my_friendly_assert (DECL_INITIAL (exp) == NULL_TREE
  1442.                       || DECL_INITIAL (exp) == error_mark_node,
  1443.                       212);
  1444.           DECL_INITIAL (exp) = init;
  1445.         }
  1446.           return;
  1447.         }
  1448.       else if (init_type == type
  1449.            && TREE_CODE (init) == COND_EXPR)
  1450.         {
  1451.           /* Push value to be initialized into the cond, where possible.
  1452.              Avoid spurious warning messages when initializing the
  1453.          result of this function.  */
  1454.           TREE_OPERAND (init, 1)
  1455.         = build_modify_expr (exp, INIT_EXPR, TREE_OPERAND (init, 1));
  1456.           if (exp == DECL_RESULT (current_function_decl))
  1457.         DECL_INITIAL (exp) = NULL_TREE;
  1458.           TREE_OPERAND (init, 2)
  1459.         = build_modify_expr (exp, INIT_EXPR, TREE_OPERAND (init, 2));
  1460.           if (exp == DECL_RESULT (current_function_decl))
  1461.         DECL_INITIAL (exp) = init;
  1462.           TREE_SIDE_EFFECTS (init) = 1;
  1463.           expand_expr (init, const0_rtx, VOIDmode, 0);
  1464.           free_temp_slots ();
  1465.           return;
  1466.         }
  1467.     }
  1468.  
  1469.       /* We did not know what we were initializing before.  Now we do.  */
  1470.       if (TREE_CODE (init) == TARGET_EXPR)
  1471.     {
  1472.       tree tmp = TREE_OPERAND (TREE_OPERAND (init, 1), 1);
  1473.  
  1474.       if (TREE_CODE (TREE_VALUE (tmp)) == NOP_EXPR
  1475.           && TREE_OPERAND (TREE_VALUE (tmp), 0) == integer_zero_node)
  1476.         {
  1477.           /* In order for this to work for RESULT_DECLs, if their
  1478.          type has a constructor, then they must be BLKmode
  1479.          so that they will be meaningfully addressable.  */
  1480.           tree arg = build_unary_op (ADDR_EXPR, exp, 0);
  1481.           init = TREE_OPERAND (init, 1);
  1482.           init = build (CALL_EXPR, build_pointer_type (TREE_TYPE (init)),
  1483.                 TREE_OPERAND (init, 0), TREE_OPERAND (init, 1), 0);
  1484.           TREE_SIDE_EFFECTS (init) = 1;
  1485. #if 0
  1486.           TREE_RAISES (init) = ??
  1487. #endif
  1488.           TREE_VALUE (TREE_OPERAND (init, 1))
  1489.         = convert_pointer_to (TREE_TYPE (TREE_TYPE (TREE_VALUE (tmp))), arg);
  1490.  
  1491.           if (alias_this)
  1492.         {
  1493.           expand_assignment (current_function_decl, init, 0, 0);
  1494.           return;
  1495.         }
  1496.           if (exp == DECL_RESULT (current_function_decl))
  1497.         {
  1498.           if (DECL_INITIAL (DECL_RESULT (current_function_decl)))
  1499.             fatal ("return value from function receives multiple initializations");
  1500.           DECL_INITIAL (exp) = init;
  1501.         }
  1502.           expand_expr_stmt (init);
  1503.           return;
  1504.         }
  1505.     }
  1506.  
  1507.       if (TREE_CODE (exp) == VAR_DECL
  1508.       && TREE_CODE (init) == CONSTRUCTOR
  1509.       && TREE_HAS_CONSTRUCTOR (init))
  1510.     {
  1511.       tree t = store_init_value (exp, init);
  1512.       if (!t)
  1513.         {
  1514.           expand_decl_init (exp);
  1515.           return;
  1516.         }
  1517.       t = build (INIT_EXPR, type, exp, init);
  1518.       TREE_SIDE_EFFECTS (t) = 1;
  1519.       expand_expr_stmt (t);
  1520.       return;
  1521.     }
  1522.  
  1523.       /* Handle this case: when calling a constructor: xyzzy foo(bar);
  1524.      which really means:  xyzzy foo = bar; Ugh!
  1525.  
  1526.      More useful for this case: xyzzy *foo = new xyzzy (bar);  */
  1527.  
  1528.       if (! TYPE_NEEDS_CONSTRUCTING (type) && ! IS_AGGR_TYPE (type))
  1529.     {
  1530.       if (init_list && TREE_CHAIN (init_list))
  1531.         {
  1532.           warning ("initializer list being treated as compound expression");
  1533.           init = convert (type, build_compound_expr (init_list));
  1534.           if (init == error_mark_node)
  1535.         return;
  1536.         }
  1537.  
  1538.       expand_assignment (exp, init, 0, 0);
  1539.  
  1540.       return;
  1541.     }
  1542.       /* See whether we can go through a type conversion operator.
  1543.      This wins over going through a non-existent constructor.  If
  1544.      there is a constructor, it is ambiguous.  */
  1545.       if (TREE_CODE (init) != TREE_LIST)
  1546.     {
  1547.       tree ttype = TREE_CODE (init_type) == REFERENCE_TYPE
  1548.         ? TREE_TYPE (init_type) : init_type;
  1549.  
  1550.       if (ttype != type && IS_AGGR_TYPE (ttype))
  1551.         {
  1552.           tree rval = build_type_conversion (CONVERT_EXPR, type, init, 0);
  1553.  
  1554.           if (rval)
  1555.         {
  1556.           /* See if there is a constructor for``type'' that takes a
  1557.              ``ttype''-typed object. */
  1558.           tree parms = build_tree_list (NULL_TREE, init);
  1559.           tree as_cons = NULL_TREE;
  1560.           if (TYPE_HAS_CONSTRUCTOR (type))
  1561.             as_cons = build_method_call (exp, constructor_name_full (type),
  1562.                          parms, binfo,
  1563.                          LOOKUP_SPECULATIVELY|LOOKUP_NO_CONVERSION);
  1564.           if (as_cons != NULL_TREE && as_cons != error_mark_node)
  1565.             /* ANSI C++ June 5 1992 WP 12.3.2.6.1 */
  1566.             cp_error ("ambiguity between conversion to `%T' and constructor",
  1567.                   type);
  1568.           else
  1569.             expand_assignment (exp, rval, 0, 0);
  1570.           return;
  1571.         }
  1572.         }
  1573.     }
  1574.     }
  1575.  
  1576.   /* Handle default copy constructors here, does not matter if there is
  1577.      a constructor or not.  */
  1578.   if (type == init_type && IS_AGGR_TYPE (type)
  1579.       && init && TREE_CODE (init) != TREE_LIST)
  1580.     expand_default_init (binfo, true_exp, exp, type, init, alias_this, flags);
  1581.   /* Not sure why this is here... */
  1582.   else if (TYPE_HAS_CONSTRUCTOR (type))
  1583.     expand_default_init (binfo, true_exp, exp, type, init, alias_this, flags);
  1584.   else if (TREE_CODE (type) == ARRAY_TYPE)
  1585.     {
  1586.       if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (type)))
  1587.     expand_vec_init (exp, exp, array_type_nelts (type), init, 0);
  1588.       else if (TYPE_VIRTUAL_P (TREE_TYPE (type)))
  1589.     sorry ("arrays of objects with virtual functions but no constructors");
  1590.     }
  1591.   else
  1592.     expand_recursive_init (binfo, true_exp, exp, init,
  1593.                CLASSTYPE_BASE_INIT_LIST (type), alias_this);
  1594. }
  1595.  
  1596. /* A pointer which holds the initializer.  First call to
  1597.    expand_aggr_init gets this value pointed to, and sets it to init_null.  */
  1598. static tree *init_ptr, init_null;
  1599.  
  1600. /* Subroutine of expand_recursive_init:
  1601.  
  1602.    ADDR is the address of the expression being initialized.
  1603.    INIT_LIST is the cons-list of initializations to be performed.
  1604.    ALIAS_THIS is its same, lovable self.  */
  1605. static void
  1606. expand_recursive_init_1 (binfo, true_exp, addr, init_list, alias_this)
  1607.      tree binfo, true_exp, addr;
  1608.      tree init_list;
  1609.      int alias_this;
  1610. {
  1611.   while (init_list)
  1612.     {
  1613.       if (TREE_PURPOSE (init_list))
  1614.     {
  1615.       if (TREE_CODE (TREE_PURPOSE (init_list)) == FIELD_DECL)
  1616.         {
  1617.           tree member = TREE_PURPOSE (init_list);
  1618.           tree subexp = build_indirect_ref (convert_pointer_to (TREE_VALUE (init_list), addr), NULL_PTR);
  1619.           tree member_base = build (COMPONENT_REF, TREE_TYPE (member), subexp, member);
  1620.           if (IS_AGGR_TYPE (TREE_TYPE (member)))
  1621.         expand_aggr_init (member_base, DECL_INITIAL (member), 0);
  1622.           else if (TREE_CODE (TREE_TYPE (member)) == ARRAY_TYPE
  1623.                && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (member)))
  1624.         {
  1625.           member_base = save_expr (default_conversion (member_base));
  1626.           expand_vec_init (member, member_base,
  1627.                    array_type_nelts (TREE_TYPE (member)),
  1628.                    DECL_INITIAL (member), 0);
  1629.         }
  1630.           else
  1631.         expand_expr_stmt (build_modify_expr (member_base, INIT_EXPR, DECL_INITIAL (member)));
  1632.         }
  1633.       else if (TREE_CODE (TREE_PURPOSE (init_list)) == TREE_LIST)
  1634.         {
  1635.           expand_recursive_init_1 (binfo, true_exp, addr, TREE_PURPOSE (init_list), alias_this);
  1636.           expand_recursive_init_1 (binfo, true_exp, addr, TREE_VALUE (init_list), alias_this);
  1637.         }
  1638.       else if (TREE_CODE (TREE_PURPOSE (init_list)) == ERROR_MARK)
  1639.         {
  1640.           /* Only initialize the virtual function tables if we
  1641.          are initializing the ultimate users of those vtables.  */
  1642.           if (TREE_VALUE (init_list))
  1643.         {
  1644.           /* We have to ensure that the first argment to
  1645.              expand_virtual_init is in binfo's hierarchy.  */
  1646.           /* Is it the case that this is exactly the right binfo? */
  1647.           /* If it is ok, then fixup expand_virtual_init, to make
  1648.              it much simpler. */
  1649.           expand_virtual_init (get_binfo (TREE_VALUE (init_list), binfo, 0),
  1650.                       addr);
  1651.           if (TREE_VALUE (init_list) == binfo
  1652.               && TYPE_USES_VIRTUAL_BASECLASSES (BINFO_TYPE (binfo)))
  1653.             expand_indirect_vtbls_init (binfo, true_exp, addr, 1);
  1654.         }
  1655.         }
  1656.       else
  1657.         my_friendly_abort (49);
  1658.     }
  1659.       else if (TREE_VALUE (init_list)
  1660.            && TREE_CODE (TREE_VALUE (init_list)) == TREE_VEC)
  1661.     {
  1662.       tree subexp = build_indirect_ref (convert_pointer_to (TREE_VALUE (init_list), addr), NULL_PTR);
  1663.       expand_aggr_init_1 (binfo, true_exp, subexp, *init_ptr,
  1664.                   alias_this && BINFO_OFFSET_ZEROP (TREE_VALUE (init_list)),
  1665.                   LOOKUP_COMPLAIN);
  1666.  
  1667.       /* INIT_PTR is used up.  */
  1668.       init_ptr = &init_null;
  1669.     }
  1670.       else
  1671.     my_friendly_abort (50);
  1672.       init_list = TREE_CHAIN (init_list);
  1673.     }
  1674. }
  1675.  
  1676. /* Initialize EXP with INIT.  Type EXP does not have a constructor,
  1677.    but it has a baseclass with a constructor or a virtual function
  1678.    table which needs initializing.
  1679.  
  1680.    INIT_LIST is a cons-list describing what parts of EXP actually
  1681.    need to be initialized.  INIT is given to the *unique*, first
  1682.    constructor within INIT_LIST.  If there are multiple first
  1683.    constructors, such as with multiple inheritance, INIT must
  1684.    be zero or an ambiguity error is reported.
  1685.  
  1686.    ALIAS_THIS is passed from `expand_aggr_init'.  See comments
  1687.    there.  */
  1688.  
  1689. static void
  1690. expand_recursive_init (binfo, true_exp, exp, init, init_list, alias_this)
  1691.      tree binfo, true_exp, exp, init;
  1692.      tree init_list;
  1693.      int alias_this;
  1694. {
  1695.   tree *old_init_ptr = init_ptr;
  1696.   tree addr = build_unary_op (ADDR_EXPR, exp, 0);
  1697.   init_ptr = &init;
  1698.  
  1699.   if (true_exp == exp && TYPE_USES_VIRTUAL_BASECLASSES (BINFO_TYPE (binfo)))
  1700.     {
  1701.       expand_aggr_vbase_init (binfo, exp, addr, init_list);
  1702.       expand_indirect_vtbls_init (binfo, true_exp, addr, 1);
  1703.     }
  1704.   expand_recursive_init_1 (binfo, true_exp, addr, init_list, alias_this);
  1705.  
  1706.   if (*init_ptr)
  1707.     {
  1708.       tree type = TREE_TYPE (exp);
  1709.  
  1710.       if (TREE_CODE (type) == REFERENCE_TYPE)
  1711.     type = TREE_TYPE (type);
  1712.       if (IS_AGGR_TYPE (type))
  1713.     cp_error ("unexpected argument to constructor `%T'", type);
  1714.       else
  1715.     error ("unexpected argument to constructor");
  1716.     }
  1717.   init_ptr = old_init_ptr;
  1718. }
  1719.  
  1720. /* Report an error if NAME is not the name of a user-defined,
  1721.    aggregate type.  If OR_ELSE is nonzero, give an error message.  */
  1722. int
  1723. is_aggr_typedef (name, or_else)
  1724.      tree name;
  1725.      int or_else;
  1726. {
  1727.   tree type;
  1728.  
  1729.   if (name == error_mark_node)
  1730.     return 0;
  1731.  
  1732.   if (IDENTIFIER_HAS_TYPE_VALUE (name))
  1733.     type = IDENTIFIER_TYPE_VALUE (name);
  1734.   else
  1735.     {
  1736.       if (or_else)
  1737.     cp_error ("`%T' is not an aggregate typedef", name);
  1738.       return 0;
  1739.     }
  1740.  
  1741.   if (! IS_AGGR_TYPE (type)
  1742.       && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
  1743.     {
  1744.       if (or_else)
  1745.     cp_error ("`%T' is not an aggregate type", type);
  1746.       return 0;
  1747.     }
  1748.   return 1;
  1749. }
  1750.  
  1751. /* Like is_aggr_typedef, but returns typedef if successful.  */
  1752. tree
  1753. get_aggr_from_typedef (name, or_else)
  1754.      tree name;
  1755.      int or_else;
  1756. {
  1757.   tree type;
  1758.  
  1759.   if (name == error_mark_node)
  1760.     return NULL_TREE;
  1761.  
  1762.   if (IDENTIFIER_HAS_TYPE_VALUE (name))
  1763.     type = IDENTIFIER_TYPE_VALUE (name);
  1764.   else
  1765.     {
  1766.       if (or_else)
  1767.     cp_error ("`%T' fails to be an aggregate typedef", name);
  1768.       return NULL_TREE;
  1769.     }
  1770.  
  1771.   if (! IS_AGGR_TYPE (type)
  1772.       && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
  1773.     {
  1774.       if (or_else)
  1775.     cp_error ("type `%T' is of non-aggregate type", type);
  1776.       return NULL_TREE;
  1777.     }
  1778.   return type;
  1779. }
  1780.  
  1781. tree
  1782. get_type_value (name)
  1783.      tree name;
  1784. {
  1785.   if (name == error_mark_node)
  1786.     return NULL_TREE;
  1787.  
  1788.   if (IDENTIFIER_HAS_TYPE_VALUE (name))
  1789.     return IDENTIFIER_TYPE_VALUE (name);
  1790.   else
  1791.     return NULL_TREE;
  1792. }
  1793.   
  1794.  
  1795. /* This code could just as well go in `class.c', but is placed here for
  1796.    modularity.  */
  1797.  
  1798. /* For an expression of the form CNAME :: NAME (PARMLIST), build
  1799.    the appropriate function call.  */
  1800. tree
  1801. build_member_call (cname, name, parmlist)
  1802.      tree cname, name, parmlist;
  1803. {
  1804.   tree type, t;
  1805.   tree method_name = name;
  1806.   int dtor = 0;
  1807.   int dont_use_this = 0;
  1808.   tree basetype_path, decl;
  1809.  
  1810.   if (TREE_CODE (method_name) == BIT_NOT_EXPR)
  1811.     {
  1812.       method_name = TREE_OPERAND (method_name, 0);
  1813.       dtor = 1;
  1814.     }
  1815.  
  1816.   if (TREE_CODE (cname) == SCOPE_REF)
  1817.     cname = resolve_scope_to_name (NULL_TREE, cname);
  1818.  
  1819.   if (cname == NULL_TREE || ! (type = get_aggr_from_typedef (cname, 1)))
  1820.     return error_mark_node;
  1821.  
  1822.   /* An operator we did not like.  */
  1823.   if (name == NULL_TREE)
  1824.     return error_mark_node;
  1825.  
  1826.   if (dtor)
  1827.     {
  1828. #if 0
  1829.       /* Everything can explicitly call a destructor; see 12.4 */
  1830.       if (! TYPE_HAS_DESTRUCTOR (type))
  1831.     cp_error ("type `%#T' does not have a destructor", type);
  1832.       else
  1833. #endif
  1834.       cp_error ("cannot call destructor `%T::~%T' without object", type,
  1835.         method_name);
  1836.       return error_mark_node;
  1837.     }
  1838.  
  1839.   /* No object?  Then just fake one up, and let build_method_call
  1840.      figure out what to do.  */
  1841.   if (current_class_type == 0
  1842.       || get_base_distance (type, current_class_type, 0, &basetype_path) == -1)
  1843.     dont_use_this = 1;
  1844.  
  1845.   if (dont_use_this)
  1846.     {
  1847.       basetype_path = TYPE_BINFO (type);
  1848.       decl = build1 (NOP_EXPR, TYPE_POINTER_TO (type), error_mark_node);
  1849.     }
  1850.   else if (current_class_decl == 0)
  1851.     {
  1852.       dont_use_this = 1;
  1853.       decl = build1 (NOP_EXPR, TYPE_POINTER_TO (type), error_mark_node);
  1854.     }
  1855.   else
  1856.     {
  1857.       tree olddecl = current_class_decl;
  1858.       tree oldtype = TREE_TYPE (TREE_TYPE (olddecl));
  1859.       if (oldtype != type)
  1860.     {
  1861.       tree newtype = build_type_variant (type, TYPE_READONLY (oldtype),
  1862.                          TYPE_VOLATILE (oldtype));
  1863.       decl = convert_force (build_pointer_type (newtype), olddecl);
  1864.     }
  1865.       else
  1866.     decl = olddecl;
  1867.     }
  1868.  
  1869.   decl = build_indirect_ref (decl, NULL_PTR);
  1870.  
  1871.   if (t = lookup_fnfields (basetype_path, method_name, 0))
  1872.     return build_method_call (decl, method_name, parmlist, basetype_path,
  1873.                   LOOKUP_NORMAL|LOOKUP_NONVIRTUAL);
  1874.   if (TREE_CODE (name) == IDENTIFIER_NODE
  1875.       && ((t = lookup_field (TYPE_BINFO (type), name, 1, 0))))
  1876.     {
  1877.       if (t == error_mark_node)
  1878.     return error_mark_node;
  1879.       if (TREE_CODE (t) == FIELD_DECL)
  1880.     {
  1881.       if (dont_use_this)
  1882.         {
  1883.           cp_error ("invalid use of non-static field `%D'", t);
  1884.           return error_mark_node;
  1885.         }
  1886.       decl = build (COMPONENT_REF, TREE_TYPE (t), decl, t);
  1887.     }
  1888.       else if (TREE_CODE (t) == VAR_DECL)
  1889.     decl = t;
  1890.       else
  1891.     {
  1892.       cp_error ("invalid use of member `%D'", t);
  1893.       return error_mark_node;
  1894.     }
  1895.       if (TYPE_LANG_SPECIFIC (TREE_TYPE (decl))
  1896.       && TYPE_OVERLOADS_CALL_EXPR (TREE_TYPE (decl)))
  1897.     return build_opfncall (CALL_EXPR, LOOKUP_NORMAL, decl, parmlist, NULL_TREE);
  1898.       return build_function_call (decl, parmlist);
  1899.     }
  1900.   else
  1901.     {
  1902.       cp_error ("no method `%T::%D'", type, name);
  1903.       return error_mark_node;
  1904.     }
  1905. }
  1906.  
  1907. /* Build a reference to a member of an aggregate.  This is not a
  1908.    C++ `&', but really something which can have its address taken,
  1909.    and then act as a pointer to member, for example CNAME :: FIELD
  1910.    can have its address taken by saying & CNAME :: FIELD.
  1911.  
  1912.    @@ Prints out lousy diagnostics for operator <typename>
  1913.    @@ fields.
  1914.  
  1915.    @@ This function should be rewritten and placed in search.c.  */
  1916. tree
  1917. build_offset_ref (cname, name)
  1918.      tree cname, name;
  1919. {
  1920.   tree decl, type, fnfields, fields, t = error_mark_node;
  1921.   tree basetypes = NULL_TREE;
  1922.   int dtor = 0;
  1923.  
  1924.   if (TREE_CODE (cname) == SCOPE_REF)
  1925.     cname = resolve_scope_to_name (NULL_TREE, cname);
  1926.  
  1927.   if (cname == NULL_TREE || ! is_aggr_typedef (cname, 1))
  1928.     return error_mark_node;
  1929.  
  1930.   type = IDENTIFIER_TYPE_VALUE (cname);
  1931.  
  1932.   if (TREE_CODE (name) == BIT_NOT_EXPR)
  1933.     {
  1934.       dtor = 1;
  1935.       name = TREE_OPERAND (name, 0);
  1936.     }
  1937.  
  1938.   if (TYPE_SIZE (type) == 0)
  1939.     {
  1940.       t = IDENTIFIER_CLASS_VALUE (name);
  1941.       if (t == 0)
  1942.     {
  1943.       cp_error ("incomplete type `%T' does not have member `%D'", type,
  1944.               name);
  1945.       return error_mark_node;
  1946.     }
  1947.       if (TREE_CODE (t) == TYPE_DECL || TREE_CODE (t) == VAR_DECL
  1948.       || TREE_CODE (t) == CONST_DECL)
  1949.     {
  1950.       TREE_USED (t) = 1;
  1951.       return t;
  1952.     }
  1953.       if (TREE_CODE (t) == FIELD_DECL)
  1954.     sorry ("use of member in incomplete aggregate type");
  1955.       else if (TREE_CODE (t) == FUNCTION_DECL)
  1956.     sorry ("use of member function in incomplete aggregate type");
  1957.       else
  1958.     my_friendly_abort (52);
  1959.       return error_mark_node;
  1960.     }
  1961.  
  1962. #if 0
  1963.   if (TREE_CODE (name) == TYPE_EXPR)
  1964.     /* Pass a TYPE_DECL to build_component_type_expr.  */
  1965.     return build_component_type_expr (TYPE_NAME (TREE_TYPE (cname)),
  1966.                       name, NULL_TREE, 1);
  1967. #endif
  1968.  
  1969.   fnfields = lookup_fnfields (TYPE_BINFO (type), name, 1);
  1970.   fields = lookup_field (type, name, 0, 0);
  1971.  
  1972.   if (fields == error_mark_node || fnfields == error_mark_node)
  1973.     return error_mark_node;
  1974.  
  1975.   if (current_class_type == 0
  1976.       || get_base_distance (type, current_class_type, 0, &basetypes) == -1)
  1977.     {
  1978.       basetypes = TYPE_BINFO (type);
  1979.       decl = build1 (NOP_EXPR,
  1980.              IDENTIFIER_TYPE_VALUE (cname),
  1981.              error_mark_node);
  1982.     }
  1983.   else if (current_class_decl == 0)
  1984.     decl = build1 (NOP_EXPR, IDENTIFIER_TYPE_VALUE (cname),
  1985.            error_mark_node);
  1986.   else
  1987.     decl = C_C_D;
  1988.  
  1989.   /* A lot of this logic is now handled in lookup_field and
  1990.      lookup_fnfield. */
  1991.   if (fnfields)
  1992.     {
  1993.       basetypes = TREE_PURPOSE (fnfields);
  1994.  
  1995.       /* Go from the TREE_BASELINK to the member function info.  */
  1996.       t = TREE_VALUE (fnfields);
  1997.  
  1998.       if (fields)
  1999.     {
  2000.       if (DECL_FIELD_CONTEXT (fields) == DECL_FIELD_CONTEXT (t))
  2001.         {
  2002.           error ("ambiguous member reference: member `%s' defined as both field and function",
  2003.              IDENTIFIER_POINTER (name));
  2004.           return error_mark_node;
  2005.         }
  2006.       if (UNIQUELY_DERIVED_FROM_P (DECL_FIELD_CONTEXT (fields), DECL_FIELD_CONTEXT (t)))
  2007.         ;
  2008.       else if (UNIQUELY_DERIVED_FROM_P (DECL_FIELD_CONTEXT (t), DECL_FIELD_CONTEXT (fields)))
  2009.         t = fields;
  2010.       else
  2011.         {
  2012.           error ("ambiguous member reference: member `%s' derives from distinct classes in multiple inheritance lattice");
  2013.           return error_mark_node;
  2014.         }
  2015.     }
  2016.  
  2017.       if (t == TREE_VALUE (fnfields))
  2018.     {
  2019.       extern int flag_save_memoized_contexts;
  2020.  
  2021.       /* This does not handle access checking yet.  */
  2022.       if (DECL_CHAIN (t) == NULL_TREE || dtor)
  2023.         {
  2024.           enum access_type access;
  2025.  
  2026.           /* unique functions are handled easily.  */
  2027.         unique:
  2028.           access = compute_access (basetypes, t);
  2029.           if (access == access_protected)
  2030.         {
  2031.           cp_error_at ("member function `%#D' is protected", t);
  2032.           error ("in this context");
  2033.           return error_mark_node;
  2034.         }
  2035.           if (access == access_private)
  2036.         {
  2037.           cp_error_at ("member function `%#D' is private", t);
  2038.           error ("in this context");
  2039.           return error_mark_node;
  2040.         }
  2041.           assemble_external (t);
  2042.           return build (OFFSET_REF, TREE_TYPE (t), decl, t);
  2043.         }
  2044.  
  2045.       /* overloaded functions may need more work.  */
  2046.       if (cname == name)
  2047.         {
  2048.           if (TYPE_HAS_DESTRUCTOR (type)
  2049.           && DECL_CHAIN (DECL_CHAIN (t)) == NULL_TREE)
  2050.         {
  2051.           t = DECL_CHAIN (t);
  2052.           goto unique;
  2053.         }
  2054.         }
  2055.       /* FNFIELDS is most likely allocated on the search_obstack,
  2056.          which will go away after this class scope.  If we need
  2057.          to save this value for later (either for memoization
  2058.          or for use as an initializer for a static variable), then
  2059.          do so here.
  2060.  
  2061.          ??? The smart thing to do for the case of saving initializers
  2062.          is to resolve them before we're done with this scope.  */
  2063.       if (!TREE_PERMANENT (fnfields)
  2064.           && ((flag_save_memoized_contexts && global_bindings_p ())
  2065.           || ! allocation_temporary_p ()))
  2066.         fnfields = copy_list (fnfields);
  2067.       t = build_tree_list (error_mark_node, fnfields);
  2068.       TREE_TYPE (t) = build_offset_type (type, unknown_type_node);
  2069.       return t;
  2070.     }
  2071.     }
  2072.  
  2073.   /* Now that we know we are looking for a field, see if we
  2074.      have access to that field.  Lookup_field will give us the
  2075.      error message.  */
  2076.  
  2077.   t = lookup_field (basetypes, name, 1, 0);
  2078.  
  2079.   if (t == error_mark_node)
  2080.     return error_mark_node;
  2081.  
  2082.   if (t == NULL_TREE)
  2083.     {
  2084.       cp_error ("`%D' is not a member of type `%T'", name, type);
  2085.       return error_mark_node;
  2086.     }
  2087.  
  2088.   if (TREE_CODE (t) == TYPE_DECL)
  2089.     {
  2090.       TREE_USED (t) = 1;
  2091.       return t;
  2092.     }
  2093.   /* static class members and class-specific enum
  2094.      values can be returned without further ado.  */
  2095.   if (TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == CONST_DECL)
  2096.     {
  2097.       assemble_external (t);
  2098.       TREE_USED (t) = 1;
  2099.       return t;
  2100.     }
  2101.  
  2102.   /* static class functions too.  */
  2103.   if (TREE_CODE (t) == FUNCTION_DECL && TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
  2104.     my_friendly_abort (53);
  2105.  
  2106.   /* In member functions, the form `cname::name' is no longer
  2107.      equivalent to `this->cname::name'.  */
  2108.   return build (OFFSET_REF, build_offset_type (type, TREE_TYPE (t)), decl, t);
  2109. }
  2110.  
  2111. /* Given an object EXP and a member function reference MEMBER,
  2112.    return the address of the actual member function.  */
  2113. tree
  2114. get_member_function (exp_addr_ptr, exp, member)
  2115.      tree *exp_addr_ptr;
  2116.      tree exp, member;
  2117. {
  2118.   tree ctype = TREE_TYPE (exp);
  2119.   tree function = save_expr (build_unary_op (ADDR_EXPR, member, 0));
  2120.  
  2121.   if (TYPE_VIRTUAL_P (ctype)
  2122.       || (flag_all_virtual == 1 && TYPE_OVERLOADS_METHOD_CALL_EXPR (ctype)))
  2123.     {
  2124.       tree e0, e1, e3;
  2125.       tree exp_addr;
  2126.  
  2127.       /* Save away the unadulterated `this' pointer.  */
  2128.       exp_addr = save_expr (*exp_addr_ptr);
  2129.  
  2130.       /* Cast function to signed integer.  */
  2131.       e0 = build1 (NOP_EXPR, integer_type_node, function);
  2132.  
  2133.       /* There is a hack here that takes advantage of
  2134.      twos complement arithmetic, and the fact that
  2135.      there are more than one UNITS to the WORD.
  2136.      If the high bit is set for the `function',
  2137.      then we pretend it is a virtual function,
  2138.      and the array indexing will knock this bit
  2139.      out the top, leaving a valid index.  */
  2140.       if (UNITS_PER_WORD <= 1)
  2141.     my_friendly_abort (54);
  2142.  
  2143.       e1 = build (GT_EXPR, integer_type_node, e0, integer_zero_node);
  2144.       e1 = build_compound_expr (tree_cons (NULL_TREE, exp_addr,
  2145.                        build_tree_list (NULL_TREE, e1)));
  2146.       e1 = save_expr (e1);
  2147.  
  2148.       if (TREE_SIDE_EFFECTS (*exp_addr_ptr))
  2149.     {
  2150.       exp = build_indirect_ref (exp_addr, NULL_PTR);
  2151.       *exp_addr_ptr = exp_addr;
  2152.     }
  2153.  
  2154.       /* This is really hairy: if the function pointer is a pointer
  2155.      to a non-virtual member function, then we can't go mucking
  2156.      with the `this' pointer (any more than we already have to
  2157.      this point).  If it is a pointer to a virtual member function,
  2158.      then we have to adjust the `this' pointer according to
  2159.      what the virtual function table tells us.  */
  2160.  
  2161.       e3 = build_vfn_ref (exp_addr_ptr, exp, e0);
  2162.       my_friendly_assert (e3 != error_mark_node, 213);
  2163.  
  2164.       /* Change this pointer type from `void *' to the
  2165.      type it is really supposed to be.  */
  2166.       TREE_TYPE (e3) = TREE_TYPE (function);
  2167.  
  2168.       /* If non-virtual, use what we had originally.  Otherwise,
  2169.      use the value we get from the virtual function table.  */
  2170.       *exp_addr_ptr = build_conditional_expr (e1, exp_addr, *exp_addr_ptr);
  2171.  
  2172.       function = build_conditional_expr (e1, function, e3);
  2173.     }
  2174.   return build_indirect_ref (function, NULL_PTR);
  2175. }
  2176.  
  2177. /* If a OFFSET_REF made it through to here, then it did
  2178.    not have its address taken.  */
  2179.  
  2180. tree
  2181. resolve_offset_ref (exp)
  2182.      tree exp;
  2183. {
  2184.   tree type = TREE_TYPE (exp);
  2185.   tree base = NULL_TREE;
  2186.   tree member;
  2187.   tree basetype, addr;
  2188.  
  2189.   if (TREE_CODE (exp) == TREE_LIST)
  2190.     return build_unary_op (ADDR_EXPR, exp, 0);
  2191.  
  2192.   if (TREE_CODE (exp) != OFFSET_REF)
  2193.     {
  2194.       my_friendly_assert (TREE_CODE (type) == OFFSET_TYPE, 214);
  2195.       if (TYPE_OFFSET_BASETYPE (type) != current_class_type)
  2196.     {
  2197.       error ("object missing in use of pointer-to-member construct");
  2198.       return error_mark_node;
  2199.     }
  2200.       member = exp;
  2201.       type = TREE_TYPE (type);
  2202.       base = C_C_D;
  2203.     }
  2204.   else
  2205.     {
  2206.       member = TREE_OPERAND (exp, 1);
  2207.       base = TREE_OPERAND (exp, 0);
  2208.     }
  2209.  
  2210.   if ((TREE_CODE (member) == VAR_DECL
  2211.        && ! TYPE_PTRMEMFUNC_P (TREE_TYPE (member)))
  2212.       || TREE_CODE (TREE_TYPE (member)) == FUNCTION_TYPE)
  2213.     {
  2214.       /* These were static members.  */
  2215.       if (mark_addressable (member) == 0)
  2216.     return error_mark_node;
  2217.       return member;
  2218.     }
  2219.  
  2220.   /* Syntax error can cause a member which should
  2221.      have been seen as static to be grok'd as non-static.  */
  2222.   if (TREE_CODE (member) == FIELD_DECL && C_C_D == NULL_TREE)
  2223.     {
  2224.       if (TREE_ADDRESSABLE (member) == 0)
  2225.     {
  2226.       cp_error_at ("member `%D' is non-static in static member function context", member);
  2227.       error ("at this point in file");
  2228.       TREE_ADDRESSABLE (member) = 1;
  2229.     }
  2230.       return error_mark_node;
  2231.     }
  2232.  
  2233.   /* The first case is really just a reference to a member of `this'.  */
  2234.   if (TREE_CODE (member) == FIELD_DECL
  2235.       && (base == C_C_D
  2236.       || (TREE_CODE (base) == NOP_EXPR
  2237.           && TREE_OPERAND (base, 0) == error_mark_node)))
  2238.     {
  2239.       tree basetype_path;
  2240.       enum access_type access;
  2241.  
  2242.       if (TREE_CODE (exp) == OFFSET_REF && TREE_CODE (type) == OFFSET_TYPE)
  2243.     basetype = TYPE_OFFSET_BASETYPE (type);
  2244.       else
  2245.     basetype = DECL_CONTEXT (member);
  2246.  
  2247.       base = current_class_decl;
  2248.       
  2249.       if (get_base_distance (basetype, TREE_TYPE (TREE_TYPE (base)), 0, &basetype_path) < 0)
  2250.     {
  2251.       error_not_base_type (basetype, TREE_TYPE (TREE_TYPE (base)));
  2252.       return error_mark_node;
  2253.     }
  2254.       addr = convert_pointer_to (basetype, base);
  2255.       access = compute_access (basetype_path, member);
  2256.       if (access == access_public)
  2257.     return build (COMPONENT_REF, TREE_TYPE (member),
  2258.               build_indirect_ref (addr, NULL_PTR), member);
  2259.       if (access == access_protected)
  2260.     {
  2261.       cp_error_at ("member `%D' is protected", member);
  2262.       error ("in this context");
  2263.       return error_mark_node;
  2264.     }
  2265.       if (access == access_private)
  2266.     {
  2267.       cp_error_at ("member `%D' is private", member);
  2268.       error ("in this context");
  2269.       return error_mark_node;
  2270.     }
  2271.       my_friendly_abort (55);
  2272.     }
  2273.  
  2274.   /* If this is a reference to a member function, then return
  2275.      the address of the member function (which may involve going
  2276.      through the object's vtable), otherwise, return an expression
  2277.      for the dereferenced pointer-to-member construct.  */
  2278.   addr = build_unary_op (ADDR_EXPR, base, 0);
  2279.  
  2280.   if (TREE_CODE (TREE_TYPE (member)) == METHOD_TYPE)
  2281.     {
  2282.       basetype = DECL_CLASS_CONTEXT (member);
  2283.       addr = convert_pointer_to (basetype, addr);
  2284.       return build_unary_op (ADDR_EXPR, get_member_function (&addr, build_indirect_ref (addr, NULL_PTR), member), 0);
  2285.     }
  2286.   else if (TREE_CODE (TREE_TYPE (member)) == OFFSET_TYPE)
  2287.     {
  2288.       basetype = TYPE_OFFSET_BASETYPE (TREE_TYPE (member));
  2289.       addr = convert_pointer_to (basetype, addr);
  2290.       member = convert (ptr_type_node, build_unary_op (ADDR_EXPR, member, 0));
  2291.       return build1 (INDIRECT_REF, type,
  2292.              build (PLUS_EXPR, ptr_type_node, addr, member));
  2293.     }
  2294.   else if (TYPE_PTRMEMFUNC_P (TREE_TYPE (member)))
  2295.     {
  2296.       return get_member_function_from_ptrfunc (&addr, base, member);
  2297.     }
  2298.   my_friendly_abort (56);
  2299.   /* NOTREACHED */
  2300.   return NULL_TREE;
  2301. }
  2302.  
  2303. /* Return either DECL or its known constant value (if it has one).  */
  2304.  
  2305. tree
  2306. decl_constant_value (decl)
  2307.      tree decl;
  2308. {
  2309.   if (! TREE_THIS_VOLATILE (decl)
  2310. #if 0
  2311.       /* These may be necessary for C, but they break C++.  */
  2312.       ! TREE_PUBLIC (decl)
  2313.       /* Don't change a variable array bound or initial value to a constant
  2314.      in a place where a variable is invalid.  */
  2315.       && ! pedantic
  2316. #endif /* 0 */
  2317.       && DECL_INITIAL (decl) != 0
  2318.       && TREE_CODE (DECL_INITIAL (decl)) != ERROR_MARK
  2319.       /* This is invalid if initial value is not constant.
  2320.      If it has either a function call, a memory reference,
  2321.      or a variable, then re-evaluating it could give different results.  */
  2322.       && TREE_CONSTANT (DECL_INITIAL (decl))
  2323.       /* Check for cases where this is sub-optimal, even though valid.  */
  2324.       && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR
  2325. #if 0
  2326.       /* We must allow this to work outside of functions so that
  2327.      static constants can be used for array sizes.  */
  2328.       && current_function_decl != 0
  2329.       && DECL_MODE (decl) != BLKmode
  2330. #endif
  2331.       )
  2332.     return DECL_INITIAL (decl);
  2333.   return decl;
  2334. }
  2335.  
  2336. /* Friend handling routines.  */
  2337. /* Friend data structures:
  2338.  
  2339.    Lists of friend functions come from TYPE_DECL nodes.  Since all
  2340.    aggregate types are automatically typedef'd, these nodes are guaranteed
  2341.    to exist.
  2342.  
  2343.    The TREE_PURPOSE of a friend list is the name of the friend,
  2344.    and its TREE_VALUE is another list.
  2345.  
  2346.    For each element of that list, either the TREE_VALUE or the TREE_PURPOSE
  2347.    will be filled in, but not both.  The TREE_VALUE of that list is an
  2348.    individual function which is a friend.  The TREE_PURPOSE of that list
  2349.    indicates a type in which all functions by that name are friends.
  2350.  
  2351.    Lists of friend classes come from _TYPE nodes.  Love that consistency
  2352.    thang.  */
  2353.  
  2354. int
  2355. is_friend_type (type1, type2)
  2356.      tree type1, type2;
  2357. {
  2358.   return is_friend (type1, type2);
  2359. }
  2360.  
  2361. int
  2362. is_friend (type, supplicant)
  2363.      tree type, supplicant;
  2364. {
  2365.   int declp;
  2366.   register tree list;
  2367.  
  2368.   if (supplicant == NULL_TREE || type == NULL_TREE)
  2369.     return 0;
  2370.  
  2371.   declp = (TREE_CODE_CLASS (TREE_CODE (supplicant)) == 'd');
  2372.  
  2373.   if (declp)
  2374.     /* It's a function decl.  */
  2375.     {
  2376.       tree list = DECL_FRIENDLIST (TYPE_NAME (type));
  2377.       tree name = DECL_NAME (supplicant);
  2378.       tree ctype = DECL_CLASS_CONTEXT (supplicant);
  2379.       for (; list ; list = TREE_CHAIN (list))
  2380.     {
  2381.       if (name == TREE_PURPOSE (list))
  2382.         {
  2383.           tree friends = TREE_VALUE (list);
  2384.           name = DECL_ASSEMBLER_NAME (supplicant);
  2385.           for (; friends ; friends = TREE_CHAIN (friends))
  2386.         {
  2387.           if (ctype == TREE_PURPOSE (friends))
  2388.             return 1;
  2389.           if (name == DECL_ASSEMBLER_NAME (TREE_VALUE (friends)))
  2390.             return 1;
  2391.         }
  2392.           break;
  2393.         }
  2394.     }
  2395.     }
  2396.   else
  2397.     /* It's a type. */
  2398.     {
  2399.       if (type == supplicant)
  2400.     return 1;
  2401.       
  2402.       list = CLASSTYPE_FRIEND_CLASSES (TREE_TYPE (TYPE_NAME (type)));
  2403.       for (; list ; list = TREE_CHAIN (list))
  2404.     if (supplicant == TREE_VALUE (list))
  2405.       return 1;
  2406.     }      
  2407.  
  2408.   {
  2409.     tree context = declp ? DECL_CLASS_CONTEXT (supplicant)
  2410.              : DECL_CONTEXT (TYPE_NAME (supplicant));
  2411.  
  2412.     if (context)
  2413.       return is_friend (type, context);
  2414.   }
  2415.  
  2416.   return 0;
  2417. }
  2418.  
  2419. /* Add a new friend to the friends of the aggregate type TYPE.
  2420.    DECL is the FUNCTION_DECL of the friend being added.  */
  2421. static void
  2422. add_friend (type, decl)
  2423.      tree type, decl;
  2424. {
  2425.   tree typedecl = TYPE_NAME (type);
  2426.   tree list = DECL_FRIENDLIST (typedecl);
  2427.   tree name = DECL_NAME (decl);
  2428.  
  2429.   while (list)
  2430.     {
  2431.       if (name == TREE_PURPOSE (list))
  2432.     {
  2433.       tree friends = TREE_VALUE (list);
  2434.       for (; friends ; friends = TREE_CHAIN (friends))
  2435.         {
  2436.           if (decl == TREE_VALUE (friends))
  2437.         {
  2438.           cp_pedwarn ("`%D' is already a friend of class `%T'",
  2439.                   decl, type);
  2440.           cp_pedwarn_at ("previous friend declaration of `%D'",
  2441.                  TREE_VALUE (friends));
  2442.           return;
  2443.         }
  2444.         }
  2445.       TREE_VALUE (list) = tree_cons (error_mark_node, decl,
  2446.                      TREE_VALUE (list));
  2447.       return;
  2448.     }
  2449.       list = TREE_CHAIN (list);
  2450.     }
  2451.   DECL_FRIENDLIST (typedecl)
  2452.     = tree_cons (DECL_NAME (decl), build_tree_list (error_mark_node, decl),
  2453.          DECL_FRIENDLIST (typedecl));
  2454.   if (DECL_NAME (decl) == ansi_opname[(int) MODIFY_EXPR])
  2455.     {
  2456.       tree parmtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
  2457.       TYPE_HAS_ASSIGNMENT (TREE_TYPE (typedecl)) = 1;
  2458.       if (parmtypes && TREE_CHAIN (parmtypes))
  2459.     {
  2460.       tree parmtype = TREE_VALUE (TREE_CHAIN (parmtypes));
  2461.       if (TREE_CODE (parmtype) == REFERENCE_TYPE
  2462.           && TREE_TYPE (parmtypes) == TREE_TYPE (typedecl))
  2463.         TYPE_HAS_ASSIGN_REF (TREE_TYPE (typedecl)) = 1;
  2464.     }
  2465.     }
  2466. }
  2467.  
  2468. /* Declare that every member function NAME in FRIEND_TYPE
  2469.    (which may be NULL_TREE) is a friend of type TYPE.  */
  2470. static void
  2471. add_friends (type, name, friend_type)
  2472.      tree type, name, friend_type;
  2473. {
  2474.   tree typedecl = TYPE_NAME (type);
  2475.   tree list = DECL_FRIENDLIST (typedecl);
  2476.  
  2477.   while (list)
  2478.     {
  2479.       if (name == TREE_PURPOSE (list))
  2480.     {
  2481.       tree friends = TREE_VALUE (list);
  2482.       while (friends && TREE_PURPOSE (friends) != friend_type)
  2483.         friends = TREE_CHAIN (friends);
  2484.       if (friends)
  2485.         if (friend_type)
  2486.           warning ("method `%s::%s' is already a friend of class",
  2487.                TYPE_NAME_STRING (friend_type),
  2488.                IDENTIFIER_POINTER (name));
  2489.         else
  2490.           warning ("function `%s' is already a friend of class `%s'",
  2491.                IDENTIFIER_POINTER (name),
  2492.                IDENTIFIER_POINTER (DECL_NAME (typedecl)));
  2493.       else
  2494.         TREE_VALUE (list) = tree_cons (friend_type, NULL_TREE,
  2495.                        TREE_VALUE (list));
  2496.       return;
  2497.     }
  2498.       list = TREE_CHAIN (list);
  2499.     }
  2500.   DECL_FRIENDLIST (typedecl) =
  2501.     tree_cons (name,
  2502.            build_tree_list (friend_type, NULL_TREE),
  2503.            DECL_FRIENDLIST (typedecl));
  2504.   if (! strncmp (IDENTIFIER_POINTER (name),
  2505.          IDENTIFIER_POINTER (ansi_opname[(int) MODIFY_EXPR]),
  2506.          strlen (IDENTIFIER_POINTER (ansi_opname[(int) MODIFY_EXPR]))))
  2507.     {
  2508.       TYPE_HAS_ASSIGNMENT (TREE_TYPE (typedecl)) = 1;
  2509.       sorry ("declaring \"friend operator =\" will not find \"operator = (X&)\" if it exists");
  2510.     }
  2511. }
  2512.  
  2513. /* Set up a cross reference so that type TYPE will make member function
  2514.    CTYPE::DECL a friend when CTYPE is finally defined.  For more than
  2515.    one, set up a cross reference so that functions with the name DECL
  2516.    and type CTYPE know that they are friends of TYPE.  */
  2517. static void
  2518. xref_friend (type, decl, ctype)
  2519.      tree type, decl, ctype;
  2520. {
  2521.   tree friend_decl = TYPE_NAME (ctype);
  2522. #if 0
  2523.   tree typedecl = TYPE_NAME (type);
  2524.   tree t = tree_cons (NULL_TREE, ctype, DECL_UNDEFINED_FRIENDS (typedecl));
  2525.  
  2526.   DECL_UNDEFINED_FRIENDS (typedecl) = t;
  2527. #else
  2528.   tree t = 0;
  2529. #endif
  2530.   SET_DECL_WAITING_FRIENDS (friend_decl,
  2531.                 tree_cons (type, t,
  2532.                        DECL_WAITING_FRIENDS (friend_decl)));
  2533.   TREE_TYPE (DECL_WAITING_FRIENDS (friend_decl)) = decl;
  2534. }
  2535.  
  2536. /* Make FRIEND_TYPE a friend class to TYPE.  If FRIEND_TYPE has already
  2537.    been defined, we make all of its member functions friends of
  2538.    TYPE.  If not, we make it a pending friend, which can later be added
  2539.    when its definition is seen.  If a type is defined, then its TYPE_DECL's
  2540.    DECL_UNDEFINED_FRIENDS contains a (possibly empty) list of friend
  2541.    classes that are not defined.  If a type has not yet been defined,
  2542.    then the DECL_WAITING_FRIENDS contains a list of types
  2543.    waiting to make it their friend.  Note that these two can both
  2544.    be in use at the same time!  */
  2545. void
  2546. make_friend_class (type, friend_type)
  2547.      tree type, friend_type;
  2548. {
  2549.   tree classes;
  2550.  
  2551.   if (IS_SIGNATURE (type))
  2552.     {
  2553.       error ("`friend' declaration in signature definition");
  2554.       return;
  2555.     }
  2556.   if (IS_SIGNATURE (friend_type))
  2557.     {
  2558.       error ("signature type `%s' declared `friend'",
  2559.          IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (friend_type))));
  2560.       return;
  2561.     }
  2562.   if (type == friend_type)
  2563.     {
  2564.       warning ("class `%s' is implicitly friends with itself",
  2565.            TYPE_NAME_STRING (type));
  2566.       return;
  2567.     }
  2568.  
  2569.   GNU_xref_hier (TYPE_NAME_STRING (type),
  2570.          TYPE_NAME_STRING (friend_type), 0, 0, 1);
  2571.  
  2572.   classes = CLASSTYPE_FRIEND_CLASSES (type);
  2573.   while (classes && TREE_VALUE (classes) != friend_type)
  2574.     classes = TREE_CHAIN (classes);
  2575.   if (classes)
  2576.     warning ("class `%s' is already friends with class `%s'",
  2577.          TYPE_NAME_STRING (TREE_VALUE (classes)), TYPE_NAME_STRING (type));
  2578.   else
  2579.     {
  2580.       CLASSTYPE_FRIEND_CLASSES (type)
  2581.     = tree_cons (NULL_TREE, friend_type, CLASSTYPE_FRIEND_CLASSES (type));
  2582.     }
  2583. }
  2584.  
  2585. /* Main friend processor.  This is large, and for modularity purposes,
  2586.    has been removed from grokdeclarator.  It returns `void_type_node'
  2587.    to indicate that something happened, though a FIELD_DECL is
  2588.    not returned.
  2589.  
  2590.    CTYPE is the class this friend belongs to.
  2591.  
  2592.    DECLARATOR is the name of the friend.
  2593.  
  2594.    DECL is the FUNCTION_DECL that the friend is.
  2595.  
  2596.    In case we are parsing a friend which is part of an inline
  2597.    definition, we will need to store PARM_DECL chain that comes
  2598.    with it into the DECL_ARGUMENTS slot of the FUNCTION_DECL.
  2599.  
  2600.    FLAGS is just used for `grokclassfn'.
  2601.  
  2602.    QUALS say what special qualifies should apply to the object
  2603.    pointed to by `this'.  */
  2604. tree
  2605. do_friend (ctype, declarator, decl, parmdecls, flags, quals)
  2606.      tree ctype, declarator, decl, parmdecls;
  2607.      enum overload_flags flags;
  2608.      tree quals;
  2609. {
  2610.   /* Every decl that gets here is a friend of something.  */
  2611.   DECL_FRIEND_P (decl) = 1;
  2612.  
  2613.   if (ctype)
  2614.     {
  2615.       tree cname = TYPE_NAME (ctype);
  2616.       if (TREE_CODE (cname) == TYPE_DECL)
  2617.     cname = DECL_NAME (cname);
  2618.  
  2619.       /* A method friend.  */
  2620.       if (TREE_CODE (decl) == FUNCTION_DECL)
  2621.     {
  2622.       if (flags == NO_SPECIAL && ctype && declarator == cname)
  2623.         DECL_CONSTRUCTOR_P (decl) = 1;
  2624.  
  2625.       /* This will set up DECL_ARGUMENTS for us.  */
  2626.       grokclassfn (ctype, cname, decl, flags, quals);
  2627.       if (TYPE_SIZE (ctype) != 0)
  2628.         check_classfn (ctype, cname, decl);
  2629.  
  2630.       if (TREE_TYPE (decl) != error_mark_node)
  2631.         {
  2632.           if (TYPE_SIZE (ctype))
  2633.         {
  2634.           /* We don't call pushdecl here yet, or ever on this
  2635.              actual FUNCTION_DECL.  We must preserve its TREE_CHAIN
  2636.              until the end.  */
  2637.           make_decl_rtl (decl, NULL_PTR, 1);
  2638.           add_friend (current_class_type, decl);
  2639.         }
  2640.           else
  2641.         {
  2642.           register char *classname
  2643.             = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (ctype)));
  2644.  
  2645.           error ("member declared as friend before type `%s' defined",
  2646.              classname);
  2647.         }
  2648.         }
  2649.     }
  2650.       else
  2651.     {
  2652.       /* Possibly a bunch of method friends.  */
  2653.  
  2654.       /* Get the class they belong to.  */
  2655.       tree ctype = IDENTIFIER_TYPE_VALUE (cname);
  2656.  
  2657.       /* This class is defined, use its methods now.  */
  2658.       if (TYPE_SIZE (ctype))
  2659.         {
  2660.           tree fields = lookup_fnfields (TYPE_BINFO (ctype), declarator, 0);
  2661.           if (fields)
  2662.         add_friends (current_class_type, declarator, ctype);
  2663.           else
  2664.         error ("method `%s' is not a member of class `%s'",
  2665.                IDENTIFIER_POINTER (declarator),
  2666.                IDENTIFIER_POINTER (cname));
  2667.         }
  2668.       else
  2669.         /* Note: DECLARATOR actually has more than one; in this
  2670.            case, we're making sure that fns with the name DECLARATOR
  2671.            and type CTYPE know they are friends of the current
  2672.            class type.  */
  2673.         xref_friend (current_class_type, declarator, ctype);
  2674.       decl = void_type_node;
  2675.     }
  2676.     }
  2677.   else if (TREE_CODE (decl) == FUNCTION_DECL
  2678.        && ((IDENTIFIER_LENGTH (declarator) == 4
  2679.         && IDENTIFIER_POINTER (declarator)[0] == 'm'
  2680.         && ! strcmp (IDENTIFIER_POINTER (declarator), "main"))
  2681.            || (IDENTIFIER_LENGTH (declarator) > 10
  2682.            && IDENTIFIER_POINTER (declarator)[0] == '_'
  2683.            && IDENTIFIER_POINTER (declarator)[1] == '_'
  2684.            && strncmp (IDENTIFIER_POINTER (declarator)+2,
  2685.                    "builtin_", 8) == 0)))
  2686.     {
  2687.       /* raw "main", and builtin functions never gets overloaded,
  2688.      but they can become friends.  */
  2689.       TREE_PUBLIC (decl) = 1;
  2690.       add_friend (current_class_type, decl);
  2691.       DECL_FRIEND_P (decl) = 1;
  2692.       decl = void_type_node;
  2693.     }
  2694.   /* A global friend.
  2695.      @@ or possibly a friend from a base class ?!?  */
  2696.   else if (TREE_CODE (decl) == FUNCTION_DECL)
  2697.     {
  2698.       /* Friends must all go through the overload machinery,
  2699.      even though they may not technically be overloaded.
  2700.  
  2701.      Note that because classes all wind up being top-level
  2702.      in their scope, their friend wind up in top-level scope as well.  */
  2703.       DECL_ASSEMBLER_NAME (decl)
  2704.     = build_decl_overload (declarator, TYPE_ARG_TYPES (TREE_TYPE (decl)),
  2705.                    TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
  2706.       DECL_ARGUMENTS (decl) = parmdecls;
  2707.       DECL_CLASS_CONTEXT (decl) = current_class_type;
  2708.  
  2709.       /* We can call pushdecl here, because the TREE_CHAIN of this
  2710.      FUNCTION_DECL is not needed for other purposes.  */
  2711.       decl = pushdecl (decl);
  2712.  
  2713.       make_decl_rtl (decl, NULL_PTR, 1);
  2714.       add_friend (current_class_type, decl);
  2715.  
  2716.       DECL_FRIEND_P (decl) = 1;
  2717. #if 0
  2718.       TREE_OVERLOADED (declarator) = 1;
  2719. #endif
  2720.     }
  2721.   else
  2722.     {
  2723.       /* @@ Should be able to ingest later definitions of this function
  2724.      before use.  */
  2725.       tree decl = lookup_name_nonclass (declarator);
  2726.       if (decl == NULL_TREE)
  2727.     {
  2728.       warning ("implicitly declaring `%s' as struct",
  2729.            IDENTIFIER_POINTER (declarator));
  2730.       decl = xref_tag (record_type_node, declarator, NULL_TREE, 1);
  2731.       decl = TYPE_NAME (decl);
  2732.     }
  2733.  
  2734.       /* Allow abbreviated declarations of overloaded functions,
  2735.      but not if those functions are really class names.  */
  2736.       if (TREE_CODE (decl) == TREE_LIST && TREE_TYPE (TREE_PURPOSE (decl)))
  2737.     {
  2738.       warning ("`friend %s' archaic, use `friend class %s' instead",
  2739.            IDENTIFIER_POINTER (declarator),
  2740.            IDENTIFIER_POINTER (declarator));
  2741.       decl = TREE_TYPE (TREE_PURPOSE (decl));
  2742.     }
  2743.  
  2744.       if (TREE_CODE (decl) == TREE_LIST)
  2745.     add_friends (current_class_type, TREE_PURPOSE (decl), NULL_TREE);
  2746.       else
  2747.     make_friend_class (current_class_type, TREE_TYPE (decl));
  2748.       decl = void_type_node;
  2749.     }
  2750.   return decl;
  2751. }
  2752.  
  2753. /* TYPE has now been defined.  It may, however, have a number of things
  2754.    waiting make make it their friend.  We resolve these references
  2755.    here.  */
  2756. void
  2757. embrace_waiting_friends (type)
  2758.      tree type;
  2759. {
  2760.   tree decl = TYPE_NAME (type);
  2761.   tree waiters;
  2762.  
  2763.   if (TREE_CODE (decl) != TYPE_DECL)
  2764.     return;
  2765.  
  2766.   for (waiters = DECL_WAITING_FRIENDS (decl); waiters;
  2767.        waiters = TREE_CHAIN (waiters))
  2768.     {
  2769.       tree waiter = TREE_PURPOSE (waiters);
  2770. #if 0
  2771.       tree waiter_prev = TREE_VALUE (waiters);
  2772. #endif
  2773.       tree decl = TREE_TYPE (waiters);
  2774.       tree name = decl ? (TREE_CODE (decl) == IDENTIFIER_NODE
  2775.               ? decl : DECL_NAME (decl)) : NULL_TREE;
  2776.       if (name)
  2777.     {
  2778.       /* @@ There may be work to be done since we have not verified
  2779.          @@ consistency between original and friend declarations
  2780.          @@ of the functions waiting to become friends.  */
  2781.       tree field = lookup_fnfields (TYPE_BINFO (type), name, 0);
  2782.       if (field)
  2783.         if (decl == name)
  2784.           add_friends (waiter, name, type);
  2785.         else
  2786.           add_friend (waiter, decl);
  2787.       else
  2788.         error_with_file_and_line (DECL_SOURCE_FILE (TYPE_NAME (waiter)),
  2789.                       DECL_SOURCE_LINE (TYPE_NAME (waiter)),
  2790.                       "no method `%s' defined in class `%s' to be friend",
  2791.                       IDENTIFIER_POINTER (DECL_NAME (TREE_TYPE (waiters))),
  2792.                       TYPE_NAME_STRING (type));
  2793.     }
  2794.       else
  2795.     make_friend_class (type, waiter);
  2796.  
  2797. #if 0
  2798.       if (TREE_CHAIN (waiter_prev))
  2799.     TREE_CHAIN (waiter_prev) = TREE_CHAIN (TREE_CHAIN (waiter_prev));
  2800.       else
  2801.     DECL_UNDEFINED_FRIENDS (TYPE_NAME (waiter)) = NULL_TREE;
  2802. #endif
  2803.     }
  2804. }
  2805.  
  2806. /* Common subroutines of build_new and build_vec_delete.  */
  2807.  
  2808. /* Common interface for calling "builtin" functions that are not
  2809.    really builtin.  */
  2810.  
  2811. tree
  2812. build_builtin_call (type, node, arglist)
  2813.      tree type;
  2814.      tree node;
  2815.      tree arglist;
  2816. {
  2817.   tree rval = build (CALL_EXPR, type, node, arglist, 0);
  2818.   TREE_SIDE_EFFECTS (rval) = 1;
  2819.   assemble_external (TREE_OPERAND (node, 0));
  2820.   TREE_USED (TREE_OPERAND (node, 0)) = 1;
  2821.   return rval;
  2822. }
  2823.  
  2824. /* Generate a C++ "new" expression. DECL is either a TREE_LIST
  2825.    (which needs to go through some sort of groktypename) or it
  2826.    is the name of the class we are newing. INIT is an initialization value.
  2827.    It is either an EXPRLIST, an EXPR_NO_COMMAS, or something in braces.
  2828.    If INIT is void_type_node, it means do *not* call a constructor
  2829.    for this instance.
  2830.  
  2831.    For types with constructors, the data returned is initialized
  2832.    by the appropriate constructor.
  2833.  
  2834.    Whether the type has a constructor or not, if it has a pointer
  2835.    to a virtual function table, then that pointer is set up
  2836.    here.
  2837.  
  2838.    Unless I am mistaken, a call to new () will return initialized
  2839.    data regardless of whether the constructor itself is private or
  2840.    not.  NOPE; new fails if the constructor is private (jcm).
  2841.  
  2842.    Note that build_new does nothing to assure that any special
  2843.    alignment requirements of the type are met.  Rather, it leaves
  2844.    it up to malloc to do the right thing.  Otherwise, folding to
  2845.    the right alignment cal cause problems if the user tries to later
  2846.    free the memory returned by `new'.
  2847.  
  2848.    PLACEMENT is the `placement' list for user-defined operator new ().  */
  2849.  
  2850. tree
  2851. build_new (placement, decl, init, use_global_new)
  2852.      tree placement;
  2853.      tree decl, init;
  2854.      int use_global_new;
  2855. {
  2856.   tree type, true_type, size, rval;
  2857.   tree nelts;
  2858.   int has_array = 0;
  2859.   enum tree_code code = NEW_EXPR;
  2860.  
  2861.   tree pending_sizes = NULL_TREE;
  2862.  
  2863.   if (decl == error_mark_node)
  2864.     return error_mark_node;
  2865.  
  2866.   if (TREE_CODE (decl) == TREE_LIST)
  2867.     {
  2868.       tree absdcl = TREE_VALUE (decl);
  2869.       tree last_absdcl = NULL_TREE;
  2870.       int old_immediate_size_expand;
  2871.  
  2872.       if (current_function_decl
  2873.       && DECL_CONSTRUCTOR_P (current_function_decl))
  2874.     {
  2875.       old_immediate_size_expand = immediate_size_expand;
  2876.       immediate_size_expand = 0;
  2877.     }
  2878.  
  2879.       nelts = integer_one_node;
  2880.  
  2881.       if (absdcl && TREE_CODE (absdcl) == CALL_EXPR)
  2882.     my_friendly_abort (215);
  2883.       while (absdcl && TREE_CODE (absdcl) == INDIRECT_REF)
  2884.     {
  2885.       last_absdcl = absdcl;
  2886.       absdcl = TREE_OPERAND (absdcl, 0);
  2887.     }
  2888.  
  2889.       if (absdcl && TREE_CODE (absdcl) == ARRAY_REF)
  2890.     {
  2891.       /* probably meant to be a vec new */
  2892.       tree this_nelts;
  2893.  
  2894.       while (TREE_OPERAND (absdcl, 0)
  2895.          && TREE_CODE (TREE_OPERAND (absdcl, 0)) == ARRAY_REF)
  2896.         {
  2897.           last_absdcl = absdcl;
  2898.           absdcl = TREE_OPERAND (absdcl, 0);
  2899.         }
  2900.  
  2901.       has_array = 1;
  2902.       this_nelts = TREE_OPERAND (absdcl, 1);
  2903.       if (this_nelts != error_mark_node)
  2904.         {
  2905.           if (this_nelts == NULL_TREE)
  2906.         error ("new of array type fails to specify size");
  2907.           else
  2908.         {
  2909.           this_nelts = save_expr (convert (sizetype, this_nelts));
  2910.           absdcl = TREE_OPERAND (absdcl, 0);
  2911.               if (this_nelts == integer_zero_node)
  2912.             {
  2913.               warning ("zero size array reserves no space");
  2914.               nelts = integer_zero_node;
  2915.             }
  2916.           else
  2917.             nelts = build_binary_op (MULT_EXPR, nelts, this_nelts, 1);
  2918.         }
  2919.         }
  2920.       else
  2921.         nelts = integer_zero_node;
  2922.     }
  2923.  
  2924.       if (last_absdcl)
  2925.     TREE_OPERAND (last_absdcl, 0) = absdcl;
  2926.       else
  2927.     TREE_VALUE (decl) = absdcl;
  2928.  
  2929.       type = true_type = groktypename (decl);
  2930.       if (! type || type == error_mark_node)
  2931.     {
  2932.       immediate_size_expand = old_immediate_size_expand;
  2933.       return error_mark_node;
  2934.     }
  2935.  
  2936.       if (current_function_decl
  2937.       && DECL_CONSTRUCTOR_P (current_function_decl))
  2938.     {
  2939.       pending_sizes = get_pending_sizes ();
  2940.       immediate_size_expand = old_immediate_size_expand;
  2941.     }
  2942.     }
  2943.   else if (TREE_CODE (decl) == IDENTIFIER_NODE)
  2944.     {
  2945.       if (IDENTIFIER_HAS_TYPE_VALUE (decl))
  2946.     {
  2947.       /* An aggregate type.  */
  2948.       type = IDENTIFIER_TYPE_VALUE (decl);
  2949.       decl = TYPE_NAME (type);
  2950.     }
  2951.       else
  2952.     {
  2953.       /* A builtin type.  */
  2954.       decl = lookup_name (decl, 1);
  2955.       my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 215);
  2956.       type = TREE_TYPE (decl);
  2957.     }
  2958.       true_type = type;
  2959.     }
  2960.   else if (TREE_CODE (decl) == TYPE_DECL)
  2961.     {
  2962.       type = TREE_TYPE (decl);
  2963.       true_type = type;
  2964.     }
  2965.   else
  2966.     {
  2967.       type = decl;
  2968.       true_type = type;
  2969.       decl = TYPE_NAME (type);
  2970.     }
  2971.  
  2972.   /* ``A reference cannot be created by the new operator.  A reference
  2973.      is not an object (8.2.2, 8.4.3), so a pointer to it could not be
  2974.      returned by new.'' ARM 5.3.3 */
  2975.   if (TREE_CODE (type) == REFERENCE_TYPE)
  2976.     {
  2977.       error ("new cannot be applied to a reference type");
  2978.       type = true_type = TREE_TYPE (type);
  2979.     }
  2980.  
  2981.   /* When the object being created is an array, the new-expression yields a
  2982.      pointer to the initial element (if any) of the array.  For example,
  2983.      both new int and new int[10] return an int*.  5.3.4.  */
  2984.   if (TREE_CODE (type) == ARRAY_TYPE && has_array == 0)
  2985.     {
  2986.       nelts = array_type_nelts_top (type);
  2987.       has_array = 1;
  2988.       type = true_type = TREE_TYPE (type);
  2989.     }
  2990.  
  2991.   if (TYPE_READONLY (type) || TYPE_VOLATILE (type))
  2992.     {
  2993.       pedwarn ("const and volatile types cannot be created with operator new");
  2994.       type = true_type = TYPE_MAIN_VARIANT (type);
  2995.     }
  2996.   
  2997.   /* If our base type is an array, then make sure we know how many elements
  2998.      it has.  */
  2999.   while (TREE_CODE (true_type) == ARRAY_TYPE)
  3000.     {
  3001.       tree this_nelts = array_type_nelts_top (true_type);
  3002.       nelts = build_binary_op (MULT_EXPR, nelts, this_nelts, 1);
  3003.       true_type = TREE_TYPE (true_type);
  3004.     }
  3005.   if (has_array)
  3006.     size = fold (build_binary_op (MULT_EXPR, size_in_bytes (true_type),
  3007.                   nelts, 1));
  3008.   else
  3009.     size = size_in_bytes (type);
  3010.  
  3011.   if (TYPE_SIZE (true_type) == 0)
  3012.     {
  3013.       if (true_type == void_type_node)
  3014.     error ("invalid type for new: `void'");
  3015.       else
  3016.     incomplete_type_error (0, true_type);
  3017.       return error_mark_node;
  3018.     }
  3019.  
  3020.   if (TYPE_LANG_SPECIFIC (true_type)
  3021.       && CLASSTYPE_ABSTRACT_VIRTUALS (true_type))
  3022.     {
  3023.       abstract_virtuals_error (NULL_TREE, true_type);
  3024.       return error_mark_node;
  3025.     }
  3026.  
  3027.   if (TYPE_LANG_SPECIFIC (true_type) && IS_SIGNATURE (true_type))
  3028.     {
  3029.       signature_error (NULL_TREE, true_type);
  3030.       return error_mark_node;
  3031.     }
  3032.  
  3033.   /* Get a little extra space to store a couple of things before the new'ed
  3034.      array. */
  3035.   if (has_array && TYPE_VEC_NEW_USES_COOKIE (true_type))
  3036.     {
  3037.       tree extra = BI_header_size;
  3038.  
  3039.       size = size_binop (PLUS_EXPR, size, extra);
  3040.     }
  3041.  
  3042.   if (has_array)
  3043.     code = VEC_NEW_EXPR;
  3044.  
  3045.   /* Allocate the object. */
  3046.   if (! use_global_new && TYPE_LANG_SPECIFIC (true_type)
  3047.       && (TYPE_GETS_NEW (true_type) & (1 << has_array)))
  3048.     rval = build_opfncall (code, LOOKUP_NORMAL,
  3049.                TYPE_POINTER_TO (true_type), size, placement);
  3050.   else if (placement)
  3051.     {
  3052.       rval = build_opfncall (code, LOOKUP_GLOBAL|LOOKUP_COMPLAIN,
  3053.                  ptr_type_node, size, placement);
  3054.       rval = convert (TYPE_POINTER_TO (true_type), rval);
  3055.     }
  3056.   else if (! has_array && flag_this_is_variable > 0
  3057.        && TYPE_HAS_CONSTRUCTOR (true_type) && init != void_type_node)
  3058.     {
  3059.       if (init == NULL_TREE || TREE_CODE (init) == TREE_LIST)
  3060.     rval = NULL_TREE;
  3061.       else
  3062.     {
  3063.       error ("constructors take parameter lists");
  3064.       return error_mark_node;
  3065.     }
  3066.     }
  3067.   else
  3068.     {
  3069.       rval = build_builtin_call (build_pointer_type (true_type),
  3070.                  has_array ? BIVN : BIN,
  3071.                  build_tree_list (NULL_TREE, size));
  3072. #if 0
  3073.       /* See comment above as to why this is disabled.  */
  3074.       if (alignment)
  3075.     {
  3076.       rval = build (PLUS_EXPR, TYPE_POINTER_TO (true_type), rval,
  3077.             alignment);
  3078.       rval = build (BIT_AND_EXPR, TYPE_POINTER_TO (true_type),
  3079.             rval, build1 (BIT_NOT_EXPR, integer_type_node,
  3080.                       alignment));
  3081.     }
  3082. #endif
  3083.       TREE_CALLS_NEW (rval) = 1;
  3084.     }
  3085.  
  3086.   /* if rval is NULL_TREE I don't have to allocate it, but are we totally
  3087.      sure we have some extra bytes in that case for the BI_header_size
  3088.      cookies? And how does that interact with the code below? (mrs) */
  3089.   /* Finish up some magic for new'ed arrays */
  3090.   if (has_array && TYPE_VEC_NEW_USES_COOKIE (true_type) && rval != NULL_TREE)
  3091.     {
  3092.       tree extra = BI_header_size;
  3093.       tree cookie, exp1;
  3094.       rval = convert (ptr_type_node, rval);    /* convert to void * first */
  3095.       rval = convert (string_type_node, rval); /* lets not add void* and ints */
  3096.       rval = save_expr (build_binary_op (PLUS_EXPR, rval, extra, 1));
  3097.       /* Store header info.  */
  3098.       cookie = build_indirect_ref (build (MINUS_EXPR, TYPE_POINTER_TO (BI_header_type),
  3099.                       rval, extra), NULL_PTR);
  3100.       exp1 = build (MODIFY_EXPR, void_type_node,
  3101.             build_component_ref (cookie, nc_nelts_field_id, 0, 0),
  3102.             nelts);
  3103.       TREE_SIDE_EFFECTS (exp1) = 1;
  3104.       rval = convert (build_pointer_type (true_type), rval);
  3105.       TREE_CALLS_NEW (rval) = 1;
  3106.       TREE_SIDE_EFFECTS (rval) = 1;
  3107.       rval = build_compound_expr (tree_cons (NULL_TREE, exp1,
  3108.                          build_tree_list (NULL_TREE, rval)));
  3109.     }
  3110.  
  3111.   /* We've figured out where the allocation is to go.
  3112.      If we're not eliding constructors, then if a constructor
  3113.      is defined, we must go through it.  */
  3114.   if (!has_array && (rval == NULL_TREE || !flag_elide_constructors)
  3115.       && TYPE_HAS_CONSTRUCTOR (true_type) && init != void_type_node)
  3116.     {
  3117.       tree newrval;
  3118.       /* Constructors are never virtual. If it has an initialization, we
  3119.      need to complain if we aren't allowed to use the ctor that took
  3120.      that argument.  */
  3121.       int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_COMPLAIN;
  3122.  
  3123.       /* If a copy constructor might work, set things up so that we can
  3124.      try that after this.  We deliberately don't clear LOOKUP_COMPLAIN
  3125.      any more, since that would make it impossible to rationally use
  3126.      the access of a constructor that matches perfectly.  */
  3127. #if 0
  3128.       if (rval != NULL_TREE)
  3129.     flags |= LOOKUP_SPECULATIVELY;
  3130. #endif
  3131.  
  3132.       if (rval && TYPE_USES_VIRTUAL_BASECLASSES (true_type))
  3133.     {
  3134.       init = tree_cons (NULL_TREE, integer_one_node, init);
  3135.       flags |= LOOKUP_HAS_IN_CHARGE;
  3136.     }
  3137.  
  3138.       {
  3139.     tree tmp = rval;
  3140.     
  3141.     if (TREE_CODE (TREE_TYPE (tmp)) == POINTER_TYPE)
  3142.       tmp = build_indirect_ref (tmp, NULL_PTR);
  3143.       
  3144.     newrval = build_method_call (tmp, constructor_name_full (true_type),
  3145.                      init, NULL_TREE, flags);
  3146.       }
  3147.       
  3148.       if (newrval)
  3149.     {
  3150.       rval = newrval;
  3151.       TREE_HAS_CONSTRUCTOR (rval) = 1;
  3152.     }
  3153.       else
  3154.     rval = error_mark_node;
  3155.       goto done;
  3156.     }
  3157.  
  3158.   if (rval == error_mark_node)
  3159.     return error_mark_node;
  3160.   rval = save_expr (rval);
  3161.   TREE_HAS_CONSTRUCTOR (rval) = 1;
  3162.  
  3163.   /* Don't call any constructors or do any initialization.  */
  3164.   if (init == void_type_node)
  3165.     goto done;
  3166.  
  3167.   if (TYPE_NEEDS_CONSTRUCTING (type) || init)
  3168.     {
  3169.       if (! TYPE_NEEDS_CONSTRUCTING (type) && ! IS_AGGR_TYPE (type))
  3170.     {
  3171.       /* New 2.0 interpretation: `new int (10)' means
  3172.          allocate an int, and initialize it with 10.  */
  3173.  
  3174.       init = build_c_cast (type, init);
  3175.       rval = build (COMPOUND_EXPR, TREE_TYPE (rval),
  3176.             build_modify_expr (build_indirect_ref (rval, NULL_PTR),
  3177.                        NOP_EXPR, init),
  3178.             rval);
  3179.       TREE_SIDE_EFFECTS (rval) = 1;
  3180.       TREE_CALLS_NEW (rval) = 1;
  3181.     }
  3182.       else if (current_function_decl == NULL_TREE)
  3183.     {
  3184.       extern tree static_aggregates;
  3185.  
  3186.       /* In case of static initialization, SAVE_EXPR is good enough.  */
  3187.       init = copy_to_permanent (init);
  3188.       rval = copy_to_permanent (rval);
  3189.       static_aggregates = perm_tree_cons (init, rval, static_aggregates);
  3190.     }
  3191.       else
  3192.     {
  3193.       /* Have to wrap this in RTL_EXPR for two cases:
  3194.          in base or member initialization and if we
  3195.          are a branch of a ?: operator.  Since we
  3196.          can't easily know the latter, just do it always.  */
  3197.       tree xval = make_node (RTL_EXPR);
  3198.  
  3199.       TREE_TYPE (xval) = TREE_TYPE (rval);
  3200.       do_pending_stack_adjust ();
  3201.       start_sequence_for_rtl_expr (xval);
  3202.  
  3203.       /* As a matter of principle, `start_sequence' should do this.  */
  3204.       emit_note (0, -1);
  3205.  
  3206.       if (has_array)
  3207.         rval = expand_vec_init (decl, rval,
  3208.                     build_binary_op (MINUS_EXPR, nelts, integer_one_node, 1),
  3209.                     init, 0);
  3210.       else
  3211.         expand_aggr_init (build_indirect_ref (rval, NULL_PTR), init, 0);
  3212.  
  3213.       do_pending_stack_adjust ();
  3214.  
  3215.       TREE_SIDE_EFFECTS (xval) = 1;
  3216.       TREE_CALLS_NEW (xval) = 1;
  3217.       RTL_EXPR_SEQUENCE (xval) = get_insns ();
  3218.       end_sequence ();
  3219.  
  3220.       if (TREE_CODE (rval) == SAVE_EXPR)
  3221.         {
  3222.           /* Errors may cause this to not get evaluated.  */
  3223.           if (SAVE_EXPR_RTL (rval) == 0)
  3224.         SAVE_EXPR_RTL (rval) = const0_rtx;
  3225.           RTL_EXPR_RTL (xval) = SAVE_EXPR_RTL (rval);
  3226.         }
  3227.       else
  3228.         {
  3229.           my_friendly_assert (TREE_CODE (rval) == VAR_DECL, 217);
  3230.           RTL_EXPR_RTL (xval) = DECL_RTL (rval);
  3231.         }
  3232.       rval = xval;
  3233.     }
  3234.     }
  3235.  done:
  3236.   if (rval && TREE_TYPE (rval) != build_pointer_type (type))
  3237.     {
  3238.       /* The type of new int [3][3] is not int *, but int [3] * */
  3239.       rval = build_c_cast (build_pointer_type (type), rval);
  3240.     }
  3241.  
  3242.   if (pending_sizes)
  3243.     rval = build_compound_expr (chainon (pending_sizes,
  3244.                      build_tree_list (NULL_TREE, rval)));
  3245.  
  3246.   if (flag_gc)
  3247.     {
  3248.       extern tree gc_visible;
  3249.       tree objbits;
  3250.       tree update_expr;
  3251.  
  3252.       rval = save_expr (rval);
  3253.       /* We don't need a `headof' operation to do this because
  3254.      we know where the object starts.  */
  3255.       objbits = build1 (INDIRECT_REF, unsigned_type_node,
  3256.             build (MINUS_EXPR, ptr_type_node,
  3257.                    rval, c_sizeof_nowarn (unsigned_type_node)));
  3258.       update_expr = build_modify_expr (objbits, BIT_IOR_EXPR, gc_visible);
  3259.       rval = build_compound_expr (tree_cons (NULL_TREE, rval,
  3260.                          tree_cons (NULL_TREE, update_expr,
  3261.                             build_tree_list (NULL_TREE, rval))));
  3262.     }
  3263.  
  3264.   return save_expr (rval);
  3265. }
  3266.  
  3267. /* `expand_vec_init' performs initialization of a vector of aggregate
  3268.    types.
  3269.  
  3270.    DECL is passed only for error reporting, and provides line number
  3271.    and source file name information.
  3272.    BASE is the space where the vector will be.
  3273.    MAXINDEX is the maximum index of the array (one less than the
  3274.         number of elements).
  3275.    INIT is the (possibly NULL) initializer.
  3276.  
  3277.    FROM_ARRAY is 0 if we should init everything with INIT
  3278.    (i.e., every element initialized from INIT).
  3279.    FROM_ARRAY is 1 if we should index into INIT in parallel
  3280.    with initialization of DECL.
  3281.    FROM_ARRAY is 2 if we should index into INIT in parallel,
  3282.    but use assignment instead of initialization.  */
  3283.  
  3284. tree
  3285. expand_vec_init (decl, base, maxindex, init, from_array)
  3286.      tree decl, base, maxindex, init;
  3287.      int from_array;
  3288. {
  3289.   tree rval;
  3290.   tree iterator, base2 = NULL_TREE;
  3291.   tree type = TREE_TYPE (TREE_TYPE (base));
  3292.   tree size;
  3293.  
  3294.   maxindex = convert (integer_type_node, maxindex);
  3295.   if (maxindex == error_mark_node)
  3296.     return error_mark_node;
  3297.  
  3298.   if (current_function_decl == NULL_TREE)
  3299.     {
  3300.       rval = make_tree_vec (3);
  3301.       TREE_VEC_ELT (rval, 0) = base;
  3302.       TREE_VEC_ELT (rval, 1) = maxindex;
  3303.       TREE_VEC_ELT (rval, 2) = init;
  3304.       return rval;
  3305.     }
  3306.  
  3307.   size = size_in_bytes (type);
  3308.  
  3309.   /* Set to zero in case size is <= 0.  Optimizer will delete this if
  3310.      it is not needed.  */
  3311.   rval = get_temp_regvar (TYPE_POINTER_TO (type),
  3312.               convert (TYPE_POINTER_TO (type), null_pointer_node));
  3313.   base = default_conversion (base);
  3314.   base = convert (TYPE_POINTER_TO (type), base);
  3315.   expand_assignment (rval, base, 0, 0);
  3316.   base = get_temp_regvar (TYPE_POINTER_TO (type), base);
  3317.  
  3318.   if (init != NULL_TREE
  3319.       && TREE_CODE (init) == CONSTRUCTOR
  3320.       && TREE_TYPE (init) == TREE_TYPE (decl))
  3321.     {
  3322.       /* Initialization of array from {...}.  */
  3323.       tree elts = CONSTRUCTOR_ELTS (init);
  3324.       tree baseref = build1 (INDIRECT_REF, type, base);
  3325.       tree baseinc = build (PLUS_EXPR, TYPE_POINTER_TO (type), base, size);
  3326.       int host_i = TREE_INT_CST_LOW (maxindex);
  3327.  
  3328.       if (IS_AGGR_TYPE (type))
  3329.     {
  3330.       while (elts)
  3331.         {
  3332.           host_i -= 1;
  3333.           expand_aggr_init (baseref, TREE_VALUE (elts), 0);
  3334.  
  3335.           expand_assignment (base, baseinc, 0, 0);
  3336.           elts = TREE_CHAIN (elts);
  3337.         }
  3338.       /* Initialize any elements by default if possible.  */
  3339.       if (host_i >= 0)
  3340.         {
  3341.           if (TYPE_NEEDS_CONSTRUCTING (type) == 0)
  3342.         {
  3343.           if (obey_regdecls)
  3344.             use_variable (DECL_RTL (base));
  3345.           goto done_init;
  3346.         }
  3347.  
  3348.           iterator = get_temp_regvar (integer_type_node,
  3349.                       build_int_2 (host_i, 0));
  3350.           init = NULL_TREE;
  3351.           goto init_by_default;
  3352.         }
  3353.     }
  3354.       else
  3355.     while (elts)
  3356.       {
  3357.         expand_assignment (baseref, TREE_VALUE (elts), 0, 0);
  3358.  
  3359.         expand_assignment (base, baseinc, 0, 0);
  3360.         elts = TREE_CHAIN (elts);
  3361.       }
  3362.  
  3363.       if (obey_regdecls)
  3364.     use_variable (DECL_RTL (base));
  3365.     }
  3366.   else
  3367.     {
  3368.       tree itype;
  3369.  
  3370.       iterator = get_temp_regvar (integer_type_node, maxindex);
  3371.  
  3372.     init_by_default:
  3373.  
  3374.       /* If initializing one array from another,
  3375.      initialize element by element.  */
  3376.       if (from_array)
  3377.     {
  3378.       /* We rely upon the below calls the do argument checking */
  3379.       if (decl == NULL_TREE)
  3380.         {
  3381.           sorry ("initialization of array from dissimilar array type");
  3382.           return error_mark_node;
  3383.         }
  3384.       if (init)
  3385.         {
  3386.           base2 = default_conversion (init);
  3387.           itype = TREE_TYPE (base2);
  3388.           base2 = get_temp_regvar (itype, base2);
  3389.           itype = TREE_TYPE (itype);
  3390.         }
  3391.       else if (TYPE_LANG_SPECIFIC (type)
  3392.            && TYPE_NEEDS_CONSTRUCTING (type)
  3393.            && ! TYPE_HAS_DEFAULT_CONSTRUCTOR (type))
  3394.         {
  3395.           error ("initializer ends prematurely");
  3396.           return error_mark_node;
  3397.         }
  3398.     }
  3399.  
  3400.       expand_start_cond (build (GE_EXPR, integer_type_node,
  3401.                 iterator, integer_zero_node), 0);
  3402.       expand_start_loop_continue_elsewhere (1);
  3403.  
  3404.       if (from_array)
  3405.     {
  3406.       tree to = build1 (INDIRECT_REF, type, base);
  3407.       tree from;
  3408.  
  3409.       if (base2)
  3410.         from = build1 (INDIRECT_REF, itype, base2);
  3411.       else
  3412.         from = NULL_TREE;
  3413.  
  3414.       if (from_array == 2)
  3415.         expand_expr_stmt (build_modify_expr (to, NOP_EXPR, from));
  3416.       else if (TYPE_NEEDS_CONSTRUCTING (type))
  3417.         expand_aggr_init (to, from, 0);
  3418.       else if (from)
  3419.         expand_assignment (to, from, 0, 0);
  3420.       else
  3421.         my_friendly_abort (57);
  3422.     }
  3423.       else if (TREE_CODE (type) == ARRAY_TYPE)
  3424.     {
  3425.       if (init != 0)
  3426.         sorry ("cannot initialize multi-dimensional array with initializer");
  3427.       expand_vec_init (decl, build1 (NOP_EXPR, TYPE_POINTER_TO (TREE_TYPE (type)), base),
  3428.                array_type_nelts (type), 0, 0);
  3429.     }
  3430.       else
  3431.     expand_aggr_init (build1 (INDIRECT_REF, type, base), init, 0);
  3432.  
  3433.       expand_assignment (base,
  3434.              build (PLUS_EXPR, TYPE_POINTER_TO (type), base, size),
  3435.              0, 0);
  3436.       if (base2)
  3437.     expand_assignment (base2,
  3438.                build (PLUS_EXPR, TYPE_POINTER_TO (type), base2, size), 0, 0);
  3439.       expand_loop_continue_here ();
  3440.       expand_exit_loop_if_false (0, build (NE_EXPR, integer_type_node,
  3441.                        build (PREDECREMENT_EXPR, integer_type_node, iterator, integer_one_node), minus_one));
  3442.  
  3443.       if (obey_regdecls)
  3444.     {
  3445.       use_variable (DECL_RTL (base));
  3446.       if (base2)
  3447.         use_variable (DECL_RTL (base2));
  3448.     }
  3449.       expand_end_loop ();
  3450.       expand_end_cond ();
  3451.       if (obey_regdecls)
  3452.     use_variable (DECL_RTL (iterator));
  3453.     }
  3454.  done_init:
  3455.  
  3456.   if (obey_regdecls)
  3457.     use_variable (DECL_RTL (rval));
  3458.   return rval;
  3459. }
  3460.  
  3461. /* Free up storage of type TYPE, at address ADDR.
  3462.  
  3463.    TYPE is a POINTER_TYPE and can be ptr_type_node for no special type
  3464.    of pointer.
  3465.  
  3466.    VIRTUAL_SIZE is the amount of storage that was allocated, and is
  3467.    used as the second argument to operator delete.  It can include
  3468.    things like padding and magic size cookies.  It has virtual in it,
  3469.    because if you have a base pointer and you delete through a virtual
  3470.    destructor, it should be the size of the dynamic object, not the
  3471.    static object, see Free Store 12.5 ANSI C++ WP.
  3472.  
  3473.    This does not call any destructors.  */
  3474. tree
  3475. build_x_delete (type, addr, which_delete, virtual_size)
  3476.      tree type, addr;
  3477.      int which_delete;
  3478.      tree virtual_size;
  3479. {
  3480.   int use_global_delete = which_delete & 1;
  3481.   int use_vec_delete = !!(which_delete & 2);
  3482.   tree rval;
  3483.   enum tree_code code = use_vec_delete ? VEC_DELETE_EXPR : DELETE_EXPR;
  3484.  
  3485.   if (! use_global_delete && TYPE_LANG_SPECIFIC (TREE_TYPE (type))
  3486.       && (TYPE_GETS_DELETE (TREE_TYPE (type)) & (1 << use_vec_delete)))
  3487.     rval = build_opfncall (code, LOOKUP_NORMAL, addr, virtual_size, NULL_TREE);
  3488.   else
  3489.     rval = build_builtin_call (void_type_node, use_vec_delete ? BIVD : BID,
  3490.                    build_tree_list (NULL_TREE, addr));
  3491.   return rval;
  3492. }
  3493.  
  3494. /* Generate a call to a destructor. TYPE is the type to cast ADDR to.
  3495.    ADDR is an expression which yields the store to be destroyed.
  3496.    AUTO_DELETE is nonzero if a call to DELETE should be made or not.
  3497.    If in the program, (AUTO_DELETE & 2) is non-zero, we tear down the
  3498.    virtual baseclasses.
  3499.    If in the program, (AUTO_DELETE & 1) is non-zero, then we deallocate.
  3500.  
  3501.    FLAGS is the logical disjunction of zero or more LOOKUP_
  3502.    flags.  See cp-tree.h for more info.
  3503.  
  3504.    This function does not delete an object's virtual base classes.  */
  3505. tree
  3506. build_delete (type, addr, auto_delete, flags, use_global_delete)
  3507.      tree type, addr;
  3508.      tree auto_delete;
  3509.      int flags;
  3510.      int use_global_delete;
  3511. {
  3512.   tree function, parms;
  3513.   tree member;
  3514.   tree expr;
  3515.   tree ref;
  3516.   int ptr;
  3517.  
  3518.   if (addr == error_mark_node)
  3519.     return error_mark_node;
  3520.  
  3521.   /* Can happen when CURRENT_EXCEPTION_OBJECT gets its type
  3522.      set to `error_mark_node' before it gets properly cleaned up.  */
  3523.   if (type == error_mark_node)
  3524.     return error_mark_node;
  3525.  
  3526.   type = TYPE_MAIN_VARIANT (type);
  3527.  
  3528.   if (TREE_CODE (type) == POINTER_TYPE)
  3529.     {
  3530.       type = TYPE_MAIN_VARIANT (TREE_TYPE (type));
  3531.       if (TYPE_SIZE (type) == 0)
  3532.     {
  3533.       incomplete_type_error (0, type);
  3534.       return error_mark_node;
  3535.     }
  3536.       if (TREE_CODE (type) == ARRAY_TYPE)
  3537.     goto handle_array;
  3538.       if (! IS_AGGR_TYPE (type))
  3539.     {
  3540.       /* Call the builtin operator delete.  */
  3541.       return build_builtin_call (void_type_node, BID,
  3542.                      build_tree_list (NULL_TREE, addr));
  3543.     }
  3544.       if (TREE_SIDE_EFFECTS (addr))
  3545.     addr = save_expr (addr);
  3546.  
  3547.       /* throw away const and volatile on target type of addr */
  3548.       addr = convert_force (build_pointer_type (type), addr);
  3549.       ref = build_indirect_ref (addr, NULL_PTR);
  3550.       ptr = 1;
  3551.     }
  3552.   else if (TREE_CODE (type) == ARRAY_TYPE)
  3553.     {
  3554.     handle_array:
  3555.       if (TREE_SIDE_EFFECTS (addr))
  3556.     addr = save_expr (addr);
  3557.       return build_vec_delete (addr, array_type_nelts (type),
  3558.                    c_sizeof_nowarn (TREE_TYPE (type)),
  3559.                    auto_delete, integer_two_node,
  3560.                    use_global_delete);
  3561.     }
  3562.   else
  3563.     {
  3564.       /* Don't check PROTECT here; leave that decision to the
  3565.      destructor.  If the destructor is accessible, call it,
  3566.      else report error.  */
  3567.       addr = build_unary_op (ADDR_EXPR, addr, 0);
  3568.       if (TREE_SIDE_EFFECTS (addr))
  3569.     addr = save_expr (addr);
  3570.  
  3571.       if (TREE_CONSTANT (addr))
  3572.     addr = convert_pointer_to (type, addr);
  3573.       else
  3574.     addr = convert_force (build_pointer_type (type), addr);
  3575.  
  3576.       if (TREE_CODE (addr) == NOP_EXPR
  3577.       && TREE_OPERAND (addr, 0) == current_class_decl)
  3578.     ref = C_C_D;
  3579.       else
  3580.     ref = build_indirect_ref (addr, NULL_PTR);
  3581.       ptr = 0;
  3582.     }
  3583.  
  3584.   my_friendly_assert (IS_AGGR_TYPE (type), 220);
  3585.  
  3586.   if (! TYPE_NEEDS_DESTRUCTOR (type))
  3587.     {
  3588.       if (auto_delete == integer_zero_node)
  3589.     return void_zero_node;
  3590.  
  3591.       /* Pass the size of the object down to the operator delete() in
  3592.      addition to the ADDR.  */
  3593.       if (TYPE_GETS_REG_DELETE (type) && !use_global_delete)
  3594.     {
  3595.       tree virtual_size = c_sizeof_nowarn (type);
  3596.       return build_opfncall (DELETE_EXPR, LOOKUP_NORMAL, addr,
  3597.                  virtual_size, NULL_TREE);
  3598.     }
  3599.  
  3600.       /* Call the builtin operator delete.  */
  3601.       return build_builtin_call (void_type_node, BID,
  3602.                  build_tree_list (NULL_TREE, addr));
  3603.     }
  3604.   parms = build_tree_list (NULL_TREE, addr);
  3605.  
  3606.   /* Below, we will reverse the order in which these calls are made.
  3607.      If we have a destructor, then that destructor will take care
  3608.      of the base classes; otherwise, we must do that here.  */
  3609.   if (TYPE_HAS_DESTRUCTOR (type))
  3610.     {
  3611.       tree dtor = DECL_MAIN_VARIANT (TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (type), 0));
  3612.       tree basetypes = TYPE_BINFO (type);
  3613.       tree passed_auto_delete;
  3614.       tree do_delete = NULL_TREE;
  3615.  
  3616.       if (use_global_delete)
  3617.     {
  3618.       tree cond = fold (build (BIT_AND_EXPR, integer_type_node,
  3619.                    auto_delete, integer_one_node));
  3620.       tree call = build_builtin_call
  3621.         (void_type_node, BID, build_tree_list (NULL_TREE, addr));
  3622.  
  3623.       cond = fold (build (COND_EXPR, void_type_node, cond,
  3624.                   call, void_zero_node));
  3625.       if (cond != void_zero_node)
  3626.         do_delete = cond;
  3627.  
  3628.       passed_auto_delete = fold (build (BIT_AND_EXPR, integer_type_node,
  3629.                         auto_delete, integer_two_node));
  3630.     }
  3631.       else
  3632.     passed_auto_delete = auto_delete;
  3633.  
  3634.       if (flags & LOOKUP_PROTECT)
  3635.     {
  3636.       enum access_type access = compute_access (basetypes, dtor);
  3637.  
  3638.       if (access == access_private)
  3639.         {
  3640.           if (flags & LOOKUP_COMPLAIN)
  3641.         cp_error ("destructor for type `%T' is private in this scope", type);
  3642.           return error_mark_node;
  3643.         }
  3644.       else if (access == access_protected)
  3645.         {
  3646.           if (flags & LOOKUP_COMPLAIN)
  3647.         cp_error ("destructor for type `%T' is protected in this scope", type);
  3648.           return error_mark_node;
  3649.         }
  3650.     }
  3651.  
  3652.       /* Once we are in a destructor, try not going through
  3653.      the virtual function table to find the next destructor.  */
  3654.       if (DECL_VINDEX (dtor)
  3655.       && ! (flags & LOOKUP_NONVIRTUAL)
  3656.       && TREE_CODE (auto_delete) != PARM_DECL
  3657.       && (ptr == 1 || ! resolves_to_fixed_type_p (ref, 0)))
  3658.     {
  3659.       tree binfo, basetype;
  3660.       /* The code below is probably all broken.  See call.c for the
  3661.          complete right way to do this. this offsets may not be right
  3662.          in the below.  (mrs) */
  3663.       /* This destructor must be called via virtual function table.  */
  3664.       dtor = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (DECL_CONTEXT (dtor)), 0);
  3665.       basetype = DECL_CLASS_CONTEXT (dtor);
  3666.       binfo = get_binfo (basetype,
  3667.                  TREE_TYPE (TREE_TYPE (TREE_VALUE (parms))),
  3668.                  0);
  3669.       expr = convert_pointer_to_real (binfo, TREE_VALUE (parms));
  3670.       if (expr != TREE_VALUE (parms))
  3671.         {
  3672.           expr = fold (expr);
  3673.           ref = build_indirect_ref (expr, NULL_PTR);
  3674.           TREE_VALUE (parms) = expr;
  3675.         }
  3676.       function = build_vfn_ref (&TREE_VALUE (parms), ref, DECL_VINDEX (dtor));
  3677.       if (function == error_mark_node)
  3678.         return error_mark_node;
  3679.       TREE_TYPE (function) = build_pointer_type (TREE_TYPE (dtor));
  3680.       TREE_CHAIN (parms) = build_tree_list (NULL_TREE, passed_auto_delete);
  3681.       expr = build_function_call (function, parms);
  3682.       if (do_delete)
  3683.         expr = build (COMPOUND_EXPR, void_type_node, expr, do_delete);
  3684.       if (ptr && (flags & LOOKUP_DESTRUCTOR) == 0)
  3685.         {
  3686.           /* Handle the case where a virtual destructor is
  3687.          being called on an item that is 0.
  3688.  
  3689.          @@ Does this really need to be done?  */
  3690.           tree ifexp = build_binary_op(NE_EXPR, addr, integer_zero_node,1);
  3691. #if 0
  3692.           if (TREE_CODE (ref) == VAR_DECL
  3693.           || TREE_CODE (ref) == COMPONENT_REF)
  3694.         warning ("losing in build_delete");
  3695. #endif
  3696.           expr = build (COND_EXPR, void_type_node,
  3697.                 ifexp, expr, void_zero_node);
  3698.         }
  3699.     }
  3700.       else
  3701.     {
  3702.       tree ifexp;
  3703.  
  3704.       if ((flags & LOOKUP_DESTRUCTOR)
  3705.           || TREE_CODE (ref) == VAR_DECL
  3706.           || TREE_CODE (ref) == PARM_DECL
  3707.           || TREE_CODE (ref) == COMPONENT_REF
  3708.           || TREE_CODE (ref) == ARRAY_REF)
  3709.         /* These can't be 0.  */
  3710.         ifexp = integer_one_node;
  3711.       else
  3712.         /* Handle the case where a non-virtual destructor is
  3713.            being called on an item that is 0.  */
  3714.         ifexp = build_binary_op (NE_EXPR, addr, integer_zero_node, 1);
  3715.  
  3716.       /* Used to mean that this destructor was known to be empty,
  3717.          but that's now obsolete.  */
  3718.       my_friendly_assert (DECL_INITIAL (dtor) != void_type_node, 221);
  3719.  
  3720.       TREE_CHAIN (parms) = build_tree_list (NULL_TREE, passed_auto_delete);
  3721.       expr = build_function_call (dtor, parms);
  3722.       if (do_delete)
  3723.         expr = build (COMPOUND_EXPR, void_type_node, expr, do_delete);
  3724.  
  3725.       if (ifexp != integer_one_node)
  3726.         expr = build (COND_EXPR, void_type_node,
  3727.               ifexp, expr, void_zero_node);
  3728.     }
  3729.       return expr;
  3730.     }
  3731.   else
  3732.     {
  3733.       /* This can get visibilities wrong.  */
  3734.       tree binfos = BINFO_BASETYPES (TYPE_BINFO (type));
  3735.       int i, n_baseclasses = binfos ? TREE_VEC_LENGTH (binfos) : 0;
  3736.       tree base_binfo = n_baseclasses > 0 ? TREE_VEC_ELT (binfos, 0) : NULL_TREE;
  3737.       tree exprstmt = NULL_TREE;
  3738.       tree parent_auto_delete = auto_delete;
  3739.       tree cond;
  3740.  
  3741.       /* If this type does not have a destructor, but does have
  3742.      operator delete, call the parent parent destructor (if any),
  3743.      but let this node do the deleting.  Otherwise, it is ok
  3744.      to let the parent destructor do the deleting.  */
  3745.       if (TYPE_GETS_REG_DELETE (type) && !use_global_delete)
  3746.     {
  3747.       parent_auto_delete = integer_zero_node;
  3748.       if (auto_delete == integer_zero_node)
  3749.         cond = NULL_TREE;
  3750.       else
  3751.         {
  3752.           tree virtual_size;
  3753.  
  3754.             /* This is probably wrong. It should be the size of the
  3755.            virtual object being deleted.  */
  3756.           virtual_size = c_sizeof_nowarn (type);
  3757.  
  3758.           expr = build_opfncall (DELETE_EXPR, LOOKUP_NORMAL, addr,
  3759.                      virtual_size, NULL_TREE);
  3760.           if (expr == error_mark_node)
  3761.         return error_mark_node;
  3762.           if (auto_delete != integer_one_node)
  3763.         cond = build (COND_EXPR, void_type_node,
  3764.                   build (BIT_AND_EXPR, integer_type_node,
  3765.                      auto_delete, integer_one_node),
  3766.                   expr, void_zero_node);
  3767.           else
  3768.         cond = expr;
  3769.         }
  3770.     }
  3771.       else if (base_binfo == NULL_TREE
  3772.            || (TREE_VIA_VIRTUAL (base_binfo) == 0
  3773.            && ! TYPE_NEEDS_DESTRUCTOR (BINFO_TYPE (base_binfo))))
  3774.     {
  3775.       tree virtual_size;
  3776.  
  3777.       /* This is probably wrong. It should be the size of the virtual
  3778.          object being deleted.  */
  3779.       virtual_size = c_sizeof_nowarn (type);
  3780.  
  3781.       cond = build (COND_EXPR, void_type_node,
  3782.             build (BIT_AND_EXPR, integer_type_node, auto_delete, integer_one_node),
  3783.             build_builtin_call (void_type_node, BID,
  3784.                         build_tree_list (NULL_TREE, addr)),
  3785.             void_zero_node);
  3786.     }
  3787.       else
  3788.     cond = NULL_TREE;
  3789.  
  3790.       if (cond)
  3791.     exprstmt = build_tree_list (NULL_TREE, cond);
  3792.  
  3793.       if (base_binfo
  3794.       && ! TREE_VIA_VIRTUAL (base_binfo)
  3795.       && TYPE_NEEDS_DESTRUCTOR (BINFO_TYPE (base_binfo)))
  3796.     {
  3797.       tree this_auto_delete;
  3798.  
  3799.       if (BINFO_OFFSET_ZEROP (base_binfo))
  3800.         this_auto_delete = parent_auto_delete;
  3801.       else
  3802.         this_auto_delete = integer_zero_node;
  3803.  
  3804.       expr = build_delete (TYPE_POINTER_TO (BINFO_TYPE (base_binfo)), addr,
  3805.                    this_auto_delete, flags, 0);
  3806.       exprstmt = tree_cons (NULL_TREE, expr, exprstmt);
  3807.     }
  3808.  
  3809.       /* Take care of the remaining baseclasses.  */
  3810.       for (i = 1; i < n_baseclasses; i++)
  3811.     {
  3812.       base_binfo = TREE_VEC_ELT (binfos, i);
  3813.       if (! TYPE_NEEDS_DESTRUCTOR (BINFO_TYPE (base_binfo))
  3814.           || TREE_VIA_VIRTUAL (base_binfo))
  3815.         continue;
  3816.  
  3817.       /* May be zero offset if other baseclasses are virtual.  */
  3818.       expr = fold (build (PLUS_EXPR, TYPE_POINTER_TO (BINFO_TYPE (base_binfo)),
  3819.                   addr, BINFO_OFFSET (base_binfo)));
  3820.  
  3821.       expr = build_delete (TYPE_POINTER_TO (BINFO_TYPE (base_binfo)), expr,
  3822.                    integer_zero_node,
  3823.                    flags, 0);
  3824.  
  3825.       exprstmt = tree_cons (NULL_TREE, expr, exprstmt);
  3826.     }
  3827.  
  3828.       for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
  3829.     {
  3830.       if (TREE_CODE (member) != FIELD_DECL)
  3831.         continue;
  3832.       if (TYPE_NEEDS_DESTRUCTOR (TREE_TYPE (member)))
  3833.         {
  3834.           tree this_member = build_component_ref (ref, DECL_NAME (member), 0, 0);
  3835.           tree this_type = TREE_TYPE (member);
  3836.           expr = build_delete (this_type, this_member, integer_two_node, flags, 0);
  3837.           exprstmt = tree_cons (NULL_TREE, expr, exprstmt);
  3838.         }
  3839.     }
  3840.  
  3841.       if (exprstmt)
  3842.     return build_compound_expr (exprstmt);
  3843.       /* Virtual base classes make this function do nothing.  */
  3844.       return void_zero_node;
  3845.     }
  3846. }
  3847.  
  3848. /* For type TYPE, delete the virtual baseclass objects of DECL.  */
  3849.  
  3850. tree
  3851. build_vbase_delete (type, decl)
  3852.      tree type, decl;
  3853. {
  3854.   tree vbases = CLASSTYPE_VBASECLASSES (type);
  3855.   tree result = NULL_TREE;
  3856.   tree addr = build_unary_op (ADDR_EXPR, decl, 0);
  3857.  
  3858.   my_friendly_assert (addr != error_mark_node, 222);
  3859.  
  3860.   while (vbases)
  3861.     {
  3862.       tree this_addr = convert_force (TYPE_POINTER_TO (BINFO_TYPE (vbases)),
  3863.                       addr);
  3864.       result = tree_cons (NULL_TREE,
  3865.               build_delete (TREE_TYPE (this_addr), this_addr,
  3866.                     integer_zero_node,
  3867.                     LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 0),
  3868.               result);
  3869.       vbases = TREE_CHAIN (vbases);
  3870.     }
  3871.   return build_compound_expr (nreverse (result));
  3872. }
  3873.  
  3874. /* Build a C++ vector delete expression.
  3875.    MAXINDEX is the number of elements to be deleted.
  3876.    ELT_SIZE is the nominal size of each element in the vector.
  3877.    BASE is the expression that should yield the store to be deleted.
  3878.    This function expands (or synthesizes) these calls itself.
  3879.    AUTO_DELETE_VEC says whether the container (vector) should be deallocated.
  3880.    AUTO_DELETE say whether each item in the container should be deallocated.
  3881.  
  3882.    This also calls delete for virtual baseclasses of elements of the vector.
  3883.  
  3884.    Update: MAXINDEX is no longer needed.  The size can be extracted from the
  3885.    start of the vector for pointers, and from the type for arrays.  We still
  3886.    use MAXINDEX for arrays because it happens to already have one of the
  3887.    values we'd have to extract.  (We could use MAXINDEX with pointers to
  3888.    confirm the size, and trap if the numbers differ; not clear that it'd
  3889.    be worth bothering.)  */
  3890. tree
  3891. build_vec_delete (base, maxindex, elt_size, auto_delete_vec, auto_delete,
  3892.           use_global_delete)
  3893.      tree base, maxindex, elt_size;
  3894.      tree auto_delete_vec, auto_delete;
  3895.      int use_global_delete;
  3896. {
  3897.   tree ptype = TREE_TYPE (base);
  3898.   tree type;
  3899.   tree virtual_size;
  3900.   /* Temporary variables used by the loop.  */
  3901.   tree tbase, size_exp, tbase_init;
  3902.  
  3903.   /* This is the body of the loop that implements the deletion of a
  3904.      single element, and moves temp variables to next elements.  */
  3905.   tree body;
  3906.  
  3907.   /* This is the LOOP_EXPR that governs the deletion of the elements.  */
  3908.   tree loop;
  3909.  
  3910.   /* This is the thing that governs what to do after the loop has run.  */
  3911.   tree deallocate_expr = 0;
  3912.  
  3913.   /* This is the BIND_EXPR which holds the outermost iterator of the
  3914.      loop.  It is convenient to set this variable up and test it before
  3915.      executing any other code in the loop.
  3916.      This is also the containing expression returned by this function.  */
  3917.   tree controller = NULL_TREE;
  3918.  
  3919.   /* This is the BLOCK to record the symbol binding for debugging.  */
  3920.   tree block;
  3921.  
  3922.   base = stabilize_reference (base);
  3923.  
  3924.   /* Since we can use base many times, save_expr it. */
  3925.   if (TREE_SIDE_EFFECTS (base))
  3926.     base = save_expr (base);
  3927.  
  3928.   if (TREE_CODE (ptype) == POINTER_TYPE)
  3929.     {
  3930.       /* Step back one from start of vector, and read dimension.  */
  3931.       tree cookie_addr = build (MINUS_EXPR, TYPE_POINTER_TO (BI_header_type),
  3932.                 base, BI_header_size);
  3933.       tree cookie = build_indirect_ref (cookie_addr, NULL_PTR);
  3934.       maxindex = build_component_ref (cookie, nc_nelts_field_id, 0, 0);
  3935.       do
  3936.     ptype = TREE_TYPE (ptype);
  3937.       while (TREE_CODE (ptype) == ARRAY_TYPE);
  3938.     }
  3939.   else if (TREE_CODE (ptype) == ARRAY_TYPE)
  3940.     {
  3941.       /* get the total number of things in the array, maxindex is a bad name */
  3942.       maxindex = array_type_nelts_total (ptype);
  3943.       while (TREE_CODE (ptype) == ARRAY_TYPE)
  3944.     ptype = TREE_TYPE (ptype);
  3945.       base = build_unary_op (ADDR_EXPR, base, 1);
  3946.     }
  3947.   else
  3948.     {
  3949.       error ("type to vector delete is neither pointer or array type");
  3950.       return error_mark_node;
  3951.     }
  3952.   type = ptype;
  3953.   ptype = TYPE_POINTER_TO (type);
  3954.  
  3955.   size_exp = size_in_bytes (type);
  3956.  
  3957.   if (! IS_AGGR_TYPE (type) || ! TYPE_NEEDS_DESTRUCTOR (type))
  3958.     {
  3959.       loop = integer_zero_node;
  3960.       goto no_destructor;
  3961.     }
  3962.  
  3963.   /* The below is short by BI_header_size */
  3964.   virtual_size = fold (size_binop (MULT_EXPR, size_exp, maxindex));
  3965.  
  3966.   tbase = build_decl (VAR_DECL, NULL_TREE, ptype);
  3967.   tbase_init = build_modify_expr (tbase, NOP_EXPR,
  3968.                   fold (build (PLUS_EXPR, ptype,
  3969.                            base,
  3970.                            virtual_size)));
  3971.   DECL_REGISTER (tbase) = 1;
  3972.   controller = build (BIND_EXPR, void_type_node, tbase, 0, 0);
  3973.   TREE_SIDE_EFFECTS (controller) = 1;
  3974.   block = build_block (tbase, 0, 0, 0, 0);
  3975.   add_block_current_level (block);
  3976.  
  3977.   if (auto_delete != integer_zero_node
  3978.       && auto_delete != integer_two_node)
  3979.     {
  3980.       tree base_tbd = convert (ptype,
  3981.                    build_binary_op (MINUS_EXPR,
  3982.                         convert (ptr_type_node, base),
  3983.                         BI_header_size,
  3984.                         1));
  3985.       /* This is the real size */
  3986.       virtual_size = size_binop (PLUS_EXPR, virtual_size, BI_header_size);
  3987.       body = build_tree_list (NULL_TREE,
  3988.                   build_x_delete (ptype, base_tbd,
  3989.                           2 | use_global_delete,
  3990.                           virtual_size));
  3991.       body = build (COND_EXPR, void_type_node,
  3992.             build (BIT_AND_EXPR, integer_type_node,
  3993.                auto_delete, integer_one_node),
  3994.             body, integer_zero_node);
  3995.     }
  3996.   else
  3997.     body = NULL_TREE;
  3998.  
  3999.   body = tree_cons (NULL_TREE,
  4000.             build_delete (ptype, tbase, auto_delete,
  4001.                   LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 1),
  4002.             body);
  4003.  
  4004.   body = tree_cons (NULL_TREE,
  4005.             build_modify_expr (tbase, NOP_EXPR, build (MINUS_EXPR, ptype, tbase, size_exp)),
  4006.             body);
  4007.  
  4008.   body = tree_cons (NULL_TREE,
  4009.             build (EXIT_EXPR, void_type_node,
  4010.                build (EQ_EXPR, integer_type_node, base, tbase)),
  4011.             body);
  4012.  
  4013.   loop = build (LOOP_EXPR, void_type_node, build_compound_expr (body));
  4014.  
  4015.   loop = tree_cons (NULL_TREE, tbase_init,
  4016.             tree_cons (NULL_TREE, loop, NULL_TREE));
  4017.   loop = build_compound_expr (loop);
  4018.  
  4019.  no_destructor:
  4020.   /* If the delete flag is one, or anything else with the low bit set,
  4021.      delete the storage.  */
  4022.   if (auto_delete_vec == integer_zero_node
  4023.       || auto_delete_vec == integer_two_node)
  4024.     deallocate_expr = integer_zero_node;
  4025.   else
  4026.     {
  4027.       tree base_tbd;
  4028.  
  4029.       /* The below is short by BI_header_size */
  4030.       virtual_size = fold (size_binop (MULT_EXPR, size_exp, maxindex));
  4031.  
  4032.       if (! TYPE_VEC_NEW_USES_COOKIE (type))
  4033.     /* no header */
  4034.     base_tbd = base;
  4035.       else
  4036.     {
  4037.       base_tbd = convert (ptype,
  4038.                   build_binary_op (MINUS_EXPR,
  4039.                            convert (string_type_node, base),
  4040.                            BI_header_size,
  4041.                            1));
  4042.       /* True size with header. */
  4043.       virtual_size = size_binop (PLUS_EXPR, virtual_size, BI_header_size);
  4044.     }
  4045.       deallocate_expr = build_x_delete (ptype, base_tbd,
  4046.                     2 | use_global_delete,
  4047.                     virtual_size);
  4048.       if (auto_delete_vec != integer_one_node)
  4049.     deallocate_expr = build (COND_EXPR, void_type_node,
  4050.                  build (BIT_AND_EXPR, integer_type_node,
  4051.                     auto_delete_vec, integer_one_node),
  4052.                  deallocate_expr, integer_zero_node);
  4053.     }
  4054.  
  4055.   if (loop && deallocate_expr != integer_zero_node)
  4056.     {
  4057.       body = tree_cons (NULL_TREE, loop,
  4058.             tree_cons (NULL_TREE, deallocate_expr, NULL_TREE));
  4059.       body = build_compound_expr (body);
  4060.     }
  4061.   else
  4062.     body = loop;
  4063.  
  4064.   /* Outermost wrapper: If pointer is null, punt.  */
  4065.   body = build (COND_EXPR, void_type_node,
  4066.         build (NE_EXPR, integer_type_node, base, integer_zero_node),
  4067.         body, integer_zero_node);
  4068.   body = build1 (NOP_EXPR, void_type_node, body);
  4069.  
  4070.   if (controller)
  4071.     {
  4072.       TREE_OPERAND (controller, 1) = body;
  4073.       return controller;
  4074.     }
  4075.   else
  4076.     return convert (void_type_node, body);
  4077. }
  4078.